We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fd3904 commit d0f96aaCopy full SHA for d0f96aa
.github/workflows/ci.yml
@@ -7,6 +7,10 @@ on:
7
branches:
8
- master
9
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: true
13
+
14
env:
15
FORCE_COLOR: 3
16
@@ -24,3 +28,13 @@ jobs:
24
28
- uses: actions/checkout@v3
25
29
- uses: wntrblm/nox@main
26
30
- run: nox
31
32
+ pass:
33
+ if: always()
34
+ needs: [checks]
35
+ runs-on: ubuntu-latest
36
+ steps:
37
+ - name: Decide whether the needed jobs succeeded or failed
38
+ uses: re-actors/alls-green@release/v1
39
+ with:
40
+ jobs: ${{ toJSON(needs) }}
0 commit comments