From 56e0d817c98dcf9af14d6eef61e9037c4af55fa1 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Sat, 12 Jul 2025 06:27:12 -0500 Subject: [PATCH] chore: add semantic-pr-lint (#220) --- .github/workflows/semantic-pr-lint.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/semantic-pr-lint.yml diff --git a/.github/workflows/semantic-pr-lint.yml b/.github/workflows/semantic-pr-lint.yml new file mode 100644 index 0000000..3657dc9 --- /dev/null +++ b/.github/workflows/semantic-pr-lint.yml @@ -0,0 +1,19 @@ +name: semantic-pr-lint + +on: + pull_request_target: + types: + - opened + - edited + - reopened + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-latest + permissions: + pull-requests: read + steps: + - uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}