From 3dc9932eb8e2ab0d7c89bb28650a334a91a07ba4 Mon Sep 17 00:00:00 2001 From: Alastair Pitts Date: Tue, 30 Jun 2026 13:55:27 +1000 Subject: [PATCH] Add conventional commit workflow --- .github/workflows/pr-validation.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/pr-validation.yml diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml new file mode 100644 index 00000000..0c22d8fc --- /dev/null +++ b/.github/workflows/pr-validation.yml @@ -0,0 +1,15 @@ +name: PR Conventional Commit Validation +run-name: PR Conventional Commit Validation + +on: + pull_request: + types: [opened, reopened, edited] + +jobs: + validate-pr-title: + runs-on: ubuntu-latest + steps: + - name: PR Conventional Commit Validation + uses: ytanikin/pr-conventional-commits@639145d78959c53c43112365837e3abd21ed67c1 # 1.5.2 + with: + task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]' \ No newline at end of file