From 648d95d0b6293b8172c4f763a2d3fce6350c17c3 Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Tue, 2 Mar 2021 11:08:56 +0100 Subject: [PATCH] feat: add pr title linter --- .github/workflows/pr_title.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/pr_title.yml diff --git a/.github/workflows/pr_title.yml b/.github/workflows/pr_title.yml new file mode 100644 index 00000000..44632ba2 --- /dev/null +++ b/.github/workflows/pr_title.yml @@ -0,0 +1,15 @@ +name: 'PR Title is Conventional' +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.GH_TOKEN }} \ No newline at end of file