From 2223ab31fa5a3aaa8c80804848b046cac953712c Mon Sep 17 00:00:00 2001 From: Albert Date: Wed, 22 Apr 2026 17:12:06 +0200 Subject: [PATCH] ci: validate PR titles for release-please --- .github/workflows/semantic-pull-request.yml | 29 +++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/semantic-pull-request.yml diff --git a/.github/workflows/semantic-pull-request.yml b/.github/workflows/semantic-pull-request.yml new file mode 100644 index 0000000..e609394 --- /dev/null +++ b/.github/workflows/semantic-pull-request.yml @@ -0,0 +1,29 @@ +name: Semantic Pull Request +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + types: | + feat + fix + perf + revert + docs + style + chore + refactor + test + build + ci