We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b1c42b commit 79a85a6Copy full SHA for 79a85a6
1 file changed
.github/workflows/test.yml
@@ -44,7 +44,9 @@ jobs:
44
name: CI Success
45
runs-on: ubuntu-latest
46
needs: [unit, lint]
47
- if: always()
+ # The shared action waits for all PR checks on this commit; on push to main
48
+ # it can also pick up unrelated branch checks (for example Dependabot).
49
+ if: ${{ always() && github.event_name == 'pull_request' }}
50
timeout-minutes: 5
51
permissions:
52
checks: read
0 commit comments