Skip to content

Commit 97c8c3e

Browse files
authored
Merge branch 'main' into wheel_test
2 parents d7f1a16 + ece3281 commit 97c8c3e

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Backport merged pull request
1+
name: "CI: Backport the merged PR"
22

33
on:
44
pull_request_target:

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,3 +241,15 @@ jobs:
241241
./.github/workflows/build-docs.yml
242242
with:
243243
build-ctk-ver: ${{ needs.build.outputs.BUILD_CTK_VER }}
244+
245+
checks:
246+
name: Check job status
247+
permissions:
248+
checks: read
249+
needs:
250+
- build
251+
- test
252+
- doc
253+
secrets: inherit
254+
uses:
255+
./.github/workflows/status-check.yml

.github/workflows/status-check.yml

Lines changed: 16 additions & 0 deletions
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)