We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2164a69 + d1345cb commit fd7f890Copy full SHA for fd7f890
.github/workflows/build-and-test.yml
@@ -279,3 +279,14 @@ jobs:
279
pytest -rxXs tests_cython
280
fi
281
popd
282
+
283
+ checks:
284
+ name: Check job status
285
+ permissions:
286
+ checks: read
287
+ needs:
288
+ - build
289
+ - test
290
+ secrets: inherit
291
+ uses:
292
+ ./.github/workflows/status-check.yml
.github/workflows/status-check.yml
@@ -0,0 +1,16 @@
1
+name: "CI: Summary"
2
3
+on:
4
+ workflow_call:
5
6
+jobs:
7
8
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: GitHub Checks
12
+ uses: poseidon/[email protected]
13
+ with:
14
+ token: ${{ secrets.GITHUB_TOKEN }}
15
+ match_pattern: "CI*"
16
+ ignore_pattern: ".*Check job status.*" # ignore self
0 commit comments