From 35f72bafc3922e84c68cdbf0cee24aecc61d3fee Mon Sep 17 00:00:00 2001 From: Jose Miguel Vega Date: Thu, 22 Jun 2023 11:46:57 -0500 Subject: [PATCH] feat: add commit-lint workflow to repo --- .github/workflows/commit-linting.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/commit-linting.yml diff --git a/.github/workflows/commit-linting.yml b/.github/workflows/commit-linting.yml new file mode 100644 index 0000000..cf89094 --- /dev/null +++ b/.github/workflows/commit-linting.yml @@ -0,0 +1,11 @@ +name: Commit Linting +on: [pull_request] + +jobs: + commitlint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: wagoid/commitlint-github-action@v5