From 7b1bdf29757b641e02c63e7c1102093002ad82fa Mon Sep 17 00:00:00 2001 From: Samuel Hoffstaetter Date: Mon, 29 Dec 2025 11:05:59 -0800 Subject: [PATCH] ci(github): Require Conventional Commits so we can automatically determine SemVer version numbers --- .github/workflows/pr-title.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..5dafea6 --- /dev/null +++ b/.github/workflows/pr-title.yml @@ -0,0 +1,21 @@ +name: 'PR Title' + +on: + pull_request: + types: + - opened + - reopened + - edited + # - synchronize (if you use required Actions) + +jobs: + main: + name: "Conventional Commits" + runs-on: ubuntu-latest + permissions: + pull-requests: read + steps: + - uses: amannn/action-semantic-pull-request@v6 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +