From 79a85a6b48646642528c5a1391862f4e522e005f Mon Sep 17 00:00:00 2001 From: Michael D'Angelo Date: Wed, 1 Apr 2026 11:07:15 -0700 Subject: [PATCH] fix ci success on main pushes --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b01b5a3..73a49fa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,7 +44,9 @@ jobs: name: CI Success runs-on: ubuntu-latest needs: [unit, lint] - if: always() + # The shared action waits for all PR checks on this commit; on push to main + # it can also pick up unrelated branch checks (for example Dependabot). + if: ${{ always() && github.event_name == 'pull_request' }} timeout-minutes: 5 permissions: checks: read