File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ jobs:
275
275
276
276
end-success :
277
277
name : bors test finished
278
- if : success()
278
+ if : github.event.push && success()
279
279
runs-on : ubuntu-latest
280
280
needs : [base, integration]
281
281
@@ -285,7 +285,7 @@ jobs:
285
285
286
286
end-failure :
287
287
name : bors test finished
288
- if : failure()
288
+ if : github.event.push && failure()
289
289
runs-on : ubuntu-latest
290
290
needs : [base, integration]
291
291
Original file line number Diff line number Diff line change 51
51
52
52
end-success :
53
53
name : bors dev test finished
54
- if : success()
54
+ if : github.event.push && success()
55
55
runs-on : ubuntu-latest
56
56
needs : [clippy_dev]
57
57
61
61
62
62
end-failure :
63
63
name : bors dev test finished
64
- if : failure()
64
+ if : github.event.push && failure()
65
65
runs-on : ubuntu-latest
66
66
needs : [clippy_dev]
67
67
Original file line number Diff line number Diff line change 31
31
32
32
end-success :
33
33
name : bors remark test finished
34
- if : success()
34
+ if : github.event.push && success()
35
35
runs-on : ubuntu-latest
36
36
needs : [remark]
37
37
41
41
42
42
end-failure :
43
43
name : bors remark test finished
44
- if : failure()
44
+ if : github.event.push && failure()
45
45
runs-on : ubuntu-latest
46
46
needs : [remark]
47
47
You can’t perform that action at this time.
0 commit comments