Commit b10a7bc
committed
chore: fix all-passed gate to run with if: always()
The all-passed job depends on lint-commits which is always skipped
on push events (due to its if: github.event_name == 'pull_request'
conditional). GitHub Actions propagates skipped status to dependent
jobs, so all-passed was silently skipped on every run and never
actually gated anything.
Adding if: always() ensures the gate job runs regardless of skipped
dependencies, and the step now verifies that no jobs failed or were
cancelled instead of unconditionally reporting success.1 parent aa5980d commit b10a7bc
1 file changed
Lines changed: 7 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
75 | 75 | | |
76 | 76 | | |
77 | 77 | | |
| 78 | + | |
78 | 79 | | |
79 | 80 | | |
80 | 81 | | |
| |||
90 | 91 | | |
91 | 92 | | |
92 | 93 | | |
93 | | - | |
94 | | - | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
0 commit comments