From 70f90f8e4c166ad6687c984e4230a51cf54a1801 Mon Sep 17 00:00:00 2001 From: Jack Arturo Date: Sat, 25 Jul 2026 23:22:03 +0200 Subject: [PATCH] ci: support merge queue checks --- .github/workflows/ci.yml | 2 ++ .github/workflows/semantic-pr-title.yml | 9 +++++++++ 2 files changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc8a143..278eda4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,8 @@ name: CI on: pull_request: branches: [main] + merge_group: + types: [checks_requested] push: branches: [main] diff --git a/.github/workflows/semantic-pr-title.yml b/.github/workflows/semantic-pr-title.yml index c3f3ecc..e528864 100644 --- a/.github/workflows/semantic-pr-title.yml +++ b/.github/workflows/semantic-pr-title.yml @@ -3,12 +3,15 @@ name: Semantic PR Title on: pull_request: types: [opened, edited, synchronize, reopened] + merge_group: + types: [checks_requested] permissions: pull-requests: read jobs: semantic-pr-title: + if: github.event_name == 'pull_request' runs-on: ubuntu-latest steps: - uses: amannn/action-semantic-pull-request@v6 @@ -28,3 +31,9 @@ jobs: revert requireScope: false + semantic-pr-title-merge-group: + if: github.event_name == 'merge_group' + name: semantic-pr-title + runs-on: ubuntu-latest + steps: + - run: echo 'PR title was validated before this merge-group run.'