From ec2ff271c0e62ea0c0b46f3f2a99ec8813d64c2a Mon Sep 17 00:00:00 2001 From: Benedikt Franke Date: Wed, 21 Jan 2026 13:50:46 +0100 Subject: [PATCH] ci: validate PR titles follow conventional commits format Co-Authored-By: Claude --- .github/workflows/pr-title.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pr-title.yml diff --git a/.github/workflows/pr-title.yml b/.github/workflows/pr-title.yml new file mode 100644 index 0000000..2f2bbf8 --- /dev/null +++ b/.github/workflows/pr-title.yml @@ -0,0 +1,19 @@ +name: PR Title + +on: + pull_request: + types: + - opened + - edited + - synchronize + +permissions: + pull-requests: read + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}