From eace94d66b7f782836e8a7134d3e48ef21e55326 Mon Sep 17 00:00:00 2001 From: hectorcast-db Date: Wed, 17 Jul 2024 09:31:47 +0200 Subject: [PATCH] [Internal] Trigger the validate workflow in the merge queue (#709) ## Changes 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 4632b80c..0c0c09a3 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