From acd3d505f0c7de92b833b64a6b61fd657b7511fb Mon Sep 17 00:00:00 2001 From: Steve 'Cutter' Blades Date: Fri, 15 May 2026 16:44:12 -0400 Subject: [PATCH] ci: Enforce conventional commits on PR titles --- .github/workflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f86b6b8..e912124 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,30 @@ concurrency: cancel-in-progress: true jobs: + pr-title: + if: github.event_name == 'pull_request' + runs-on: ubuntu-latest + permissions: + pull-requests: read + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + types: | + feat + fix + perf + refactor + docs + test + ci + chore + build + style + revert + requireScope: false + validation: runs-on: ubuntu-latest