Skip to content

Commit a3c2bc0

Browse files
authored
Use pinned re-actors/alls-green to ensure job status (#5456)
Fixes #4429
1 parent af3b01b commit a3c2bc0

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

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

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,3 +453,25 @@ jobs:
453453
path: |
454454
reports/*/*.csv
455455
reports/.env
456+
457+
check-jobs:
458+
runs-on: runner-0.0.22
459+
if: always()
460+
needs:
461+
- build
462+
- integration-tests
463+
- reports
464+
steps:
465+
- name: Checkout repository
466+
uses: actions/checkout@v5
467+
468+
- name: Install Python
469+
uses: ./.github/actions/setup-python
470+
with:
471+
python_version: ${{ inputs.python_version }}
472+
use_pyenv: ${{ inputs.use_pyenv_python }}
473+
474+
- name: Ensure job status
475+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe
476+
with:
477+
jobs: ${{ toJSON(needs) }}

0 commit comments

Comments
 (0)