From f6a2ff4694feb9a43484171b12857f0d60cfb23b Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Mon, 4 May 2020 07:34:40 +0100 Subject: [PATCH] ci(commitlint): add GitHub action [skip ci] --- .github/workflows/commitlint.yml | 13 +++++++++++++ 1 file changed, 13 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..4f96e72 --- /dev/null +++ b/.github/workflows/commitlint.yml @@ -0,0 +1,13 @@ +name: Commitlint +on: [pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: wagoid/commitlint-github-action@v1