From 7980d191ab47c537df9202fbd2564a1a6301dff3 Mon Sep 17 00:00:00 2001 From: Joe Haddad Date: Fri, 13 Nov 2020 22:08:56 -0500 Subject: [PATCH] ci: add PR linting action (#679) --- .github/workflows/prs.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/prs.yml diff --git a/.github/workflows/prs.yml b/.github/workflows/prs.yml new file mode 100644 index 00000000..0fe5ed8c --- /dev/null +++ b/.github/workflows/prs.yml @@ -0,0 +1,15 @@ +name: 'Lint PR' +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v2.1.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}