Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/next' into webgpu-true
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy committed Oct 22, 2024
2 parents 9d07572 + f900d69 commit 36ff493
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,7 @@ jobs:
)
) ||
(
github.event_name == 'pull_request' && (
contains(vars.AUTO_DEPLOY_PRS, $'\n' + toString(github.event.pull_request.number)) + $'\n' ||
startsWith(vars.AUTO_DEPLOY_PRS, toString(github.event.pull_request.number) + $'\n') ||
endsWith(vars.AUTO_DEPLOY_PRS, $'\n' + toString(github.event.pull_request.number)) ||
vars.AUTO_DEPLOY_PRS == toString(github.event.pull_request.number)
)
github.event_name == 'pull_request' && fromJSON(env.AUTO_DEPLOY_PRS).includes(github.event.pull_request.number)
)
permissions:
pull-requests: write
Expand Down

0 comments on commit 36ff493

Please sign in to comment.