From 108988651bba5690bdc8164395365872820aa1ed Mon Sep 17 00:00:00 2001 From: Michael Zalimeni Date: Mon, 4 Dec 2023 13:26:04 -0500 Subject: [PATCH] pass now --- .github/workflows/go-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-tests.yml b/.github/workflows/go-tests.yml index bb441c54bb..573e7b7e9d 100644 --- a/.github/workflows/go-tests.yml +++ b/.github/workflows/go-tests.yml @@ -59,13 +59,13 @@ jobs: name: Setup outputs run: ./.github/scripts/get_runner_classes.sh - always-fail: + always-pass: needs: - conditional-skip - setup runs-on: ubuntu-latest steps: - - run: echo "failing!" && sleep 20s && exit 1 + - run: echo "success!" # This is job is required for branch protection as a required gihub check # because GitHub actions show up as checks at the job level and not the @@ -85,7 +85,7 @@ jobs: needs: - conditional-skip - setup - - always-fail + - always-pass # - go-test-s390x runs-on: ${{ fromJSON(needs.setup.outputs.compute-small) }} if: always() && needs.conditional-skip.outputs.skip-ci != 'true'