From 32d72f38b40db6937c8ea15949cc0f8ea0b49eac Mon Sep 17 00:00:00 2001 From: David Sanders Date: Fri, 4 Aug 2023 15:19:46 -0700 Subject: [PATCH] ci: use action-semantic-pull-request (#108) --- .github/workflows/semantic.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/semantic.yml diff --git a/.github/workflows/semantic.yml b/.github/workflows/semantic.yml new file mode 100644 index 0000000..93cb314 --- /dev/null +++ b/.github/workflows/semantic.yml @@ -0,0 +1,26 @@ +name: "Check Semantic Commit" + +on: + pull_request: + types: + - opened + - edited + - synchronize + +permissions: + contents: read + +jobs: + main: + permissions: + pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs + statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR + name: Validate PR Title + runs-on: ubuntu-latest + steps: + - name: semantic-pull-request + uses: amannn/action-semantic-pull-request@c3cd5d1ea3580753008872425915e343e351ab54 # v5.2.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + validateSingleCommit: false