xref: /plugin/today/.github/workflows/commit-lint.yml (revision 3a27fcdf3763b31cb160b1b6be229f6e82a1f314)
1name: Lint Commit Messages
2on: [ pull_request ]
3
4jobs:
5    commitlint:
6        runs-on: ubuntu-latest
7        steps:
8            -   name: Checkout
9                uses: actions/checkout@v2
10                with:
11                    fetch-depth: 0
12            -   uses: wagoid/commitlint-github-action@v2
13