From d836fb2da96745bece9d69b8204ef56f19aa11ed Mon Sep 17 00:00:00 2001 From: red40maxxer <113548315+red40maxxer@users.noreply.github.com> Date: Tue, 2 Dec 2025 22:55:48 -0500 Subject: [PATCH] ci: add PR title lint (#66) * ci: add PR title lint * style: ending newline --------- Co-authored-by: mad-cat-lon <113548315+mad-cat-lon@users.noreply.github.com> --- .github/workflows/semantic-pr.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/semantic-pr.yml diff --git a/.github/workflows/semantic-pr.yml b/.github/workflows/semantic-pr.yml new file mode 100644 index 0000000..9aa7d22 --- /dev/null +++ b/.github/workflows/semantic-pr.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-latest + permissions: + pull-requests: read + steps: + - uses: amannn/action-semantic-pull-request@v6 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}