We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4e35f5 commit 6570d71Copy full SHA for 6570d71
.github/workflows/main-checks.yml
@@ -12,3 +12,12 @@ on:
12
jobs:
13
checks:
14
uses: ./.github/workflows/shared.yml
15
+
16
+ all-green:
17
+ if: always()
18
+ needs: [checks]
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
22
+ with:
23
+ jobs: ${{ toJSON(needs) }}
.github/workflows/shared.yml
@@ -77,12 +77,3 @@ jobs:
77
78
- name: Check README snippets are up to date
79
run: uv run --frozen scripts/update_readme_snippets.py --check
80
-
81
- check:
82
- if: always()
83
- needs: [pre-commit, test, readme-snippets]
84
- runs-on: ubuntu-latest
85
- steps:
86
- - uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
87
- with:
88
- jobs: ${{ toJSON(needs) }}
0 commit comments