From 4abca8bdccd5f79e4aed841df8608c3510a91e89 Mon Sep 17 00:00:00 2001 From: Hector Castejon Diaz Date: Wed, 17 Jul 2024 09:17:01 +0200 Subject: [PATCH] [Internal] Trigger the validate workflow in the merge queue --- .github/workflows/message.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/message.yml b/.github/workflows/message.yml index 89f60eaf8f..ab54041af3 100644 --- a/.github/workflows/message.yml +++ b/.github/workflows/message.yml @@ -3,11 +3,16 @@ name: Validate Commit Message on: pull_request: types: [opened, synchronize, edited] + merge_group: + types: [checks_requested] jobs: - validate: runs-on: ubuntu-latest + # GitHub required checks are shared between PRs and the Merge Queue. + # Since there is no PR title on Merge Queue, we need to trigger and + # skip this test for Merge Queue to succeed. + if: github.event_name == 'pull_request' steps: - name: Checkout uses: actions/checkout@v3