Skip to content

Commit 3f1af19

Browse files
committed
Also fail dummy bors jobs on cancel
1 parent 4f328b2 commit 3f1af19

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/clippy_bors.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ jobs:
279279

280280
end-failure:
281281
name: bors test finished
282-
if: github.event.pusher.name == 'bors' && failure()
282+
if: github.event.pusher.name == 'bors' && (failure() || cancelled())
283283
runs-on: ubuntu-latest
284284
needs: [base, integration]
285285

.github/workflows/clippy_dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
end-failure:
5959
name: bors dev test finished
60-
if: github.event.pusher.name == 'bors' && failure()
60+
if: github.event.pusher.name == 'bors' && (failure() || cancelled())
6161
runs-on: ubuntu-latest
6262
needs: [clippy_dev]
6363

.github/workflows/remark.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
end-failure:
4242
name: bors remark test finished
43-
if: github.event.pusher.name == 'bors' && failure()
43+
if: github.event.pusher.name == 'bors' && (failure() || cancelled())
4444
runs-on: ubuntu-latest
4545
needs: [remark]
4646

0 commit comments

Comments
 (0)