From 66ae4e39bd478905d5460d9a4bf07b73262d29bd Mon Sep 17 00:00:00 2001 From: Federico Bianchi Date: Sat, 2 Nov 2024 12:55:33 -0400 Subject: [PATCH] should run on push --- .github/workflows/merge_queue.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/merge_queue.yml b/.github/workflows/merge_queue.yml index f7473dc..be3423f 100644 --- a/.github/workflows/merge_queue.yml +++ b/.github/workflows/merge_queue.yml @@ -1,15 +1,19 @@ name: Merge Queue Tests on: + pull_request: + branches: + - main push: branches: - - main # Add this temporarily to make it visible + - main merge_group: types: [checks_requested] jobs: test: name: Run Tests + if: github.event_name == 'pull_request' || github.event_name == 'push' || github.event_name == 'merge_group' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3