From c52b4ebc92414bbe61d104192b7cef7636e4dd7f Mon Sep 17 00:00:00 2001 From: Albert Date: Mon, 9 Mar 2026 23:04:20 +0100 Subject: [PATCH] ci: add semantic pull request validation --- .github/workflows/semantic-pull-request.yml | 16 ++++++++++++++++ 1 file changed, 16 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..4679de1 --- /dev/null +++ b/.github/workflows/semantic-pull-request.yml @@ -0,0 +1,16 @@ +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 }}