From 0e775aec36208e5410d20b8bc3956b39cc902c5a Mon Sep 17 00:00:00 2001 From: simatic-ax-bot Date: Wed, 4 Feb 2026 12:12:25 +0000 Subject: [PATCH] feat: roll out a new workflow that checks conventional commit guidelines are being followed --- .../check-conventional-commit-compliance.yml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/check-conventional-commit-compliance.yml diff --git a/.github/workflows/check-conventional-commit-compliance.yml b/.github/workflows/check-conventional-commit-compliance.yml new file mode 100644 index 0000000..7baa032 --- /dev/null +++ b/.github/workflows/check-conventional-commit-compliance.yml @@ -0,0 +1,33 @@ + +name: PR Title Conventional Commit Check + +on: + pull_request: + types: [opened, edited, synchronize, reopened] + +permissions: + contents: read + pull-requests: read + +jobs: + check-pr-title: + runs-on: ubuntu-24.04 + + steps: + - name: Check PR title for Conventional Commits compliance + uses: amannn/action-semantic-pull-request@v5 + with: + types: | + feat + fix + docs + style + refactor + perf + test + build + ci + chore + requireScope: false + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}