From 5426aa178983a9f841667c9cbe24cc0b495478f2 Mon Sep 17 00:00:00 2001 From: Sandy Vanderbleek Date: Sun, 5 Nov 2023 18:47:16 -0500 Subject: [PATCH] ci: add merge queue to workflow and skip commit check outside --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf7df723..aba6531b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,7 @@ name: CI on: pull_request: + merge_group: push: branches: [ release, dev ] schedule: [ cron: "0 6 * * 4" ] @@ -103,6 +104,7 @@ jobs: check_commit_conventions: name: Commit messages follow project guidelines runs-on: ubuntu-latest + if: github.event_name != 'pull_request' || github.event.action == 'enqueued' steps: - uses: actions/checkout@v2 with: