From 8a5b5a10b2a937497a5f3abd4da38f3d0375e767 Mon Sep 17 00:00:00 2001 From: Travis Shivers Date: Sun, 23 Aug 2020 16:35:26 -0500 Subject: [PATCH] ci(commitlint): add commit-lint action for pull requests --- .github/workflows/commit-lint.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/commit-lint.yml diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml new file mode 100644 index 00000000..0ec0f11b --- /dev/null +++ b/.github/workflows/commit-lint.yml @@ -0,0 +1,13 @@ +name: commit-lint + +on: + pull_request: + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - uses: ahmadnassri/action-conventional-commit-lint@v1 + with: + token: ${{ github.token }} \ No newline at end of file