File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,12 @@ jobs:
4444 vercel-auto-deploy :
4545 runs-on : ubuntu-latest
4646 if : >-
47- env.AUTO_DEPLOY_PRS contains $'\n' + toString(github.event.pull_request.number) + $'\n' ||
48- startsWith(env.AUTO_DEPLOY_PRS, toString(github.event.pull_request.number) + $'\n') ||
49- endsWith(env.AUTO_DEPLOY_PRS, $'\n' + toString(github.event.pull_request.number)) ||
50- env.AUTO_DEPLOY_PRS == toString(github.event.pull_request.number)
47+ (
48+ env.AUTO_DEPLOY_PRS contains $'\n' + toString(github.event.pull_request.number) + $'\n' ||
49+ startsWith(env.AUTO_DEPLOY_PRS, toString(github.event.pull_request.number) + $'\n') ||
50+ endsWith(env.AUTO_DEPLOY_PRS, $'\n' + toString(github.event.pull_request.number)) ||
51+ env.AUTO_DEPLOY_PRS == toString(github.event.pull_request.number)
52+ }
5153 permissions :
5254 pull-requests : write
5355 steps :
You can’t perform that action at this time.
0 commit comments