synclounge/.github/workflows/commit-lint.yml

16 lines
337 B
YAML
Raw Normal View History

2020-08-24 00:12:33 +00:00
name: commit-lint
on:
pull_request:
jobs:
lint:
# Dependabot sometimes makes some really long commit messages and I can't stop it
if: github.actor != 'dependabot[bot]'
2020-08-24 00:12:33 +00:00
runs-on: ubuntu-latest
steps:
2020-09-28 22:30:03 +00:00
- uses: ahmadnassri/action-conventional-commit-lint@v1.0.0
2020-08-24 00:12:33 +00:00
with:
2020-09-28 22:30:03 +00:00
token: ${{ github.token }}