From 636e4eee0ffa78a0d9401987af6860a9838b43ad Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Sun, 6 Sep 2020 02:32:52 +0100 Subject: [PATCH] [ci] add an allgood job for easy [required] builds (#3351) * add an allgood job for easy [required] builds see https://github.community/t/is-it-possible-to-require-all-github-actions-tasks-to-pass-without-enumerating-them/117957/4?u=graingert * Update .github/workflows/main.yml * Update .github/workflows/main.yml Co-authored-by: Thomas Grainger Co-authored-by: James Lamb --- .github/workflows/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 08a2d1035a22..dd63043ba9aa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -160,3 +160,10 @@ jobs: $env:TASK = "${{ matrix.task }}" conda init powershell & "$env:GITHUB_WORKSPACE/.ci/test_windows.ps1" + all-successful: + # https://github.community/t/is-it-possible-to-require-all-github-actions-tasks-to-pass-without-enumerating-them/117957/4?u=graingert + runs-on: ubuntu-latest + needs: [test] + steps: + - name: note that all tests succeeded + run: echo "🎉"