From 9ce9eace51ac05cf9f233a3a271bacd1290d824b Mon Sep 17 00:00:00 2001 From: marshacb Date: Wed, 13 Sep 2023 13:02:20 -0400 Subject: [PATCH] readd semantic --- .github/workflows/semantic.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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..c01e94a --- /dev/null +++ b/.github/workflows/semantic.yml @@ -0,0 +1,27 @@ +name: pr-title + +on: + pull_request: + branches: + - master + types: + - opened + - edited + - synchronize + pull_request_target: + types: + - opened + - edited + - synchronize + +jobs: + validate-title: + permissions: + pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs + name: Validate PR Title + runs-on: ubuntu-latest + steps: + - name: semantic-pull-request + uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}