From a806193f8b419ea95fa3990e49dd2acd6e827f22 Mon Sep 17 00:00:00 2001 From: chris3ware <36608309+chris3ware@users.noreply.github.com> Date: Thu, 13 Feb 2025 15:52:40 +0000 Subject: [PATCH] fix(checks): Add ignore for auto-approve-pr check --- .github/workflows/wait-for-checks.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/wait-for-checks.yaml b/.github/workflows/wait-for-checks.yaml index 2399fc7..9d89b3b 100644 --- a/.github/workflows/wait-for-checks.yaml +++ b/.github/workflows/wait-for-checks.yaml @@ -23,6 +23,9 @@ jobs: uses: poseidon/wait-for-status-checks@6988432d64ad3f9c2608db4ca16fded1b7d36ead # v0.5.0 with: token: ${{ secrets.GITHUB_TOKEN }} + # check run "auto-approve-pr" is completed with conclusion "cancelled" (unsuccessful) when skipped + # auto-approve-pr should run on the conclusion of enforce-all-checks, so checks should not check for auto-approve-pr + ignore: auto-approve-pr # Approve PR raised by 3ware-release[bot] to upgrade trunk on trunk branches # after all checks have passed.