diff --git a/.github/workflows/commit-message-lint.yml b/.github/workflows/commit-message-lint.yml new file mode 100644 index 00000000..041b444a --- /dev/null +++ b/.github/workflows/commit-message-lint.yml @@ -0,0 +1,16 @@ +name: Lint Commit Messages + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + commitlint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: wagoid/commitlint-github-action@v4