From 45eaa6aeb8caf67120c26472d25045e156382e30 Mon Sep 17 00:00:00 2001 From: Daniel Pindur Date: Mon, 19 Jan 2026 19:50:31 +0100 Subject: [PATCH] add pr title check --- .../action-semantic-pull-request.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/action-semantic-pull-request.yml diff --git a/.github/workflows/action-semantic-pull-request.yml b/.github/workflows/action-semantic-pull-request.yml new file mode 100644 index 0000000..6d7e233 --- /dev/null +++ b/.github/workflows/action-semantic-pull-request.yml @@ -0,0 +1,19 @@ +name: 'Lint PR' + +on: + pull_request_target: + types: + - opened + - reopened + - edited + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-slim + permissions: + pull-requests: read + steps: + - uses: amannn/action-semantic-pull-request@v6 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}