From 85d48fc81cc0bc6c5973a62dadeec9ce35a97419 Mon Sep 17 00:00:00 2001 From: Maarten Zuidhoorn Date: Thu, 13 Mar 2025 11:59:01 +0100 Subject: [PATCH] Skip rerunning workflows in merge queue --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d87f10575f..27b711d263 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -121,7 +121,7 @@ jobs: re-run: name: Re-run failed jobs needs: lint-build-test - if: failure() && fromJSON(github.run_attempt) < 3 && github.event.pull_request.user.login != 'dependabot[bot]' + if: failure() && fromJSON(github.run_attempt) < 3 && github.event.pull_request.user.login != 'dependabot[bot]' && github.event_name != 'merge_group' runs-on: ubuntu-latest permissions: actions: write