From 4e9d890bb2e263df843800131e037e3f77c435da Mon Sep 17 00:00:00 2001 From: Mark Lawlor Date: Tue, 5 Aug 2025 10:11:57 +1000 Subject: [PATCH] chore: enable commitlint on PR merge queue --- .github/workflows/commitlint.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/commitlint.yml diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml new file mode 100644 index 00000000..88908abf --- /dev/null +++ b/.github/workflows/commitlint.yml @@ -0,0 +1,16 @@ +name: Lint Commit Messages in Merge Queue + +on: + merge_group: + types: + - checks_requested + +jobs: + commitlint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ github.sha }} + + - uses: wagoid/commitlint-github-action@v6