Skip to content

Commit fd7f890

Browse files
authored
Merge branch '11.8.x' into wheel_ci_11
2 parents 2164a69 + d1345cb commit fd7f890

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/build-and-test.yml

+11
Original file line numberDiff line numberDiff line change
@@ -279,3 +279,14 @@ jobs:
279279
pytest -rxXs tests_cython
280280
fi
281281
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

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "CI: Summary"
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:
7+
checks:
8+
name: Check job status
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

Comments
 (0)