From 62be08cbfe193c53fba88829433bc530eb1c800e Mon Sep 17 00:00:00 2001 From: Wagner Santos Date: Tue, 1 Oct 2019 20:11:39 -0300 Subject: [PATCH] chore: add commitlint workflow using the local action --- .github/workflows/commitlint.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/commitlint.yml diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml new file mode 100644 index 0000000..ac35865 --- /dev/null +++ b/.github/workflows/commitlint.yml @@ -0,0 +1,11 @@ +name: Commitlint +on: [pull_request] + +jobs: + commitlint: + runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v1 + - uses: ./