File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ jobs:
116
116
run : echo "[CI_PR_NUMBER=$num]"
117
117
env :
118
118
num : ${{ github.event.number }}
119
- if : success() && github.event_name == 'pull_request'
119
+ if : github.event_name == 'pull_request'
120
120
121
121
- name : add extra environment variables
122
122
run : src/ci/scripts/setup-environment.sh
@@ -219,7 +219,7 @@ jobs:
219
219
# adding the condition is helpful as this way CI will not silently skip
220
220
# deploying artifacts from a dist builder if the variables are misconfigured,
221
221
# erroring about invalid credentials instead.
222
- if : success() && ( github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1')
222
+ if : github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1'
223
223
224
224
# This job isused to tell bors the final status of the build, as there is no practical way to detect
225
225
# when a workflow is successful listening to webhooks only in our current bors implementation (homu).
You can’t perform that action at this time.
0 commit comments