From 10a59ed4b6fb7dc8fb64fcce7323b29396cabb2e Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Sat, 16 Dec 2023 13:44:12 -0800 Subject: [PATCH] added semantic pr github action https://github.com/amannn/action-semantic-pull-request (#634) --- .github/workflows/semantic-prs.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/semantic-prs.yml diff --git a/.github/workflows/semantic-prs.yml b/.github/workflows/semantic-prs.yml new file mode 100644 index 00000000..d54e1749 --- /dev/null +++ b/.github/workflows/semantic-prs.yml @@ -0,0 +1,20 @@ +name: "Lint PR" + +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +permissions: + pull-requests: read + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}