diff --git a/.github/workflows/ci-aws-cfn.yml b/.github/workflows/ci-aws-cfn.yml index 59e038ef6efe..7aef43a720cd 100644 --- a/.github/workflows/ci-aws-cfn.yml +++ b/.github/workflows/ci-aws-cfn.yml @@ -36,8 +36,11 @@ jobs: poetry run make aws-cfn git diff --exit-code ci-aws-cfn-mark: + if: always() needs: - check-changes-applied runs-on: ubuntu-latest steps: - - run: echo mark + - uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }} diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index d5211d6b48a4..d4e83e3a96d9 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -209,6 +209,7 @@ jobs: file: unittest.xml token: ${{ secrets.CODECOV_TOKEN }} ci-core-mark: + if: always() needs: - lint - test-migrations @@ -218,7 +219,9 @@ jobs: - test-e2e runs-on: ubuntu-latest steps: - - run: echo mark + - uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }} build: strategy: fail-fast: false diff --git a/.github/workflows/ci-outpost.yml b/.github/workflows/ci-outpost.yml index 394c64b710d3..74c53c7624d2 100644 --- a/.github/workflows/ci-outpost.yml +++ b/.github/workflows/ci-outpost.yml @@ -49,12 +49,15 @@ jobs: run: | go test -timeout 0 -v -race -coverprofile=coverage.out -covermode=atomic -cover ./... ci-outpost-mark: + if: always() needs: - lint-golint - test-unittest runs-on: ubuntu-latest steps: - - run: echo mark + - uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }} build-container: timeout-minutes: 120 needs: diff --git a/.github/workflows/ci-web.yml b/.github/workflows/ci-web.yml index 89e9bc536ede..7df25a961be3 100644 --- a/.github/workflows/ci-web.yml +++ b/.github/workflows/ci-web.yml @@ -61,12 +61,15 @@ jobs: working-directory: web/ run: npm run build ci-web-mark: + if: always() needs: - build - lint runs-on: ubuntu-latest steps: - - run: echo mark + - uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }} test: needs: - ci-web-mark diff --git a/.github/workflows/ci-website.yml b/.github/workflows/ci-website.yml index 48a5e1844e3c..7f565f1ff01c 100644 --- a/.github/workflows/ci-website.yml +++ b/.github/workflows/ci-website.yml @@ -62,10 +62,13 @@ jobs: working-directory: website/ run: npm run ${{ matrix.job }} ci-website-mark: + if: always() needs: - lint - test - build runs-on: ubuntu-latest steps: - - run: echo mark + - uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }}