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.
2 parents bf4ab09 + c4f0026 commit d1345cbCopy full SHA for d1345cb
.github/workflows/build-and-test.yml
@@ -268,3 +268,14 @@ jobs:
268
fi
269
pytest -rxXs tests_cython
270
popd
271
+
272
+ checks:
273
+ name: Check job status
274
+ permissions:
275
+ checks: read
276
+ needs:
277
+ - build
278
+ - test
279
+ secrets: inherit
280
+ uses:
281
+ ./.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