Skip to content

Commit d9752e4

Browse files
authored
add all-green CI job (#1283)
1 parent df358b3 commit d9752e4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,14 @@ jobs:
8484
run: |
8585
curl -o codecov.sh -f https://codecov.io/bash || curl -o codecov.sh -f https://codecov.io/bash || curl -o codecov.sh -f https://codecov.io/bash
8686
bash codecov.sh -n "tox -e ${{ matrix.TEST.TOXENV }} on ${{ matrix.TEST.CONTAINER }}"
87+
88+
all-green:
89+
runs-on: ubuntu-latest
90+
needs: [linux, linux-docker]
91+
if: ${{ always() }}
92+
timeout-minutes: 3
93+
steps:
94+
- name: Decide whether the needed jobs succeeded or failed
95+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
96+
with:
97+
jobs: ${{ toJSON(needs) }}

0 commit comments

Comments
 (0)