From 27215a4e16fa8bac166b221d487afc428b0a5aca Mon Sep 17 00:00:00 2001 From: Thibault Jamet Date: Sun, 8 Mar 2020 16:36:39 +0100 Subject: [PATCH] Add a place holder to request all image built (#77) github checks with github actions are per matrix variant. Using the "all-image-build-success" job allows to require all images are successfully built for pull requests --- .github/workflows/push.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d14803c..0458eeb 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -7,7 +7,13 @@ on: # rebuild any PRs and main branch changes - 're-builld-all' jobs: - test-docker-build: + all-image-build-success: + needs: + - docker-build + runs-on: ubuntu-latest + steps: + - run: echo success + docker-build: runs-on: ubuntu-latest strategy: fail-fast: false