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

15 lines
332 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:
- uses: ahmadnassri/action-conventional-commit-lint@v1
with:
token: ${{ github.token }}