From 812093455e4bfddf399076bcfc01b055e93f4b07 Mon Sep 17 00:00:00 2001 From: Jef LeCompte Date: Tue, 6 Oct 2020 22:34:55 -0400 Subject: [PATCH] chore: add pr title lint Signed-off-by: Jef LeCompte --- .github/workflows/pr-lint.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/pr-lint.yaml diff --git a/.github/workflows/pr-lint.yaml b/.github/workflows/pr-lint.yaml new file mode 100644 index 0000000..9aebaf9 --- /dev/null +++ b/.github/workflows/pr-lint.yaml @@ -0,0 +1,15 @@ +name: pr-lint +on: + pull_request_target: + types: + - opened + - edited + - reopened + - synchronize +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v2.0.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}