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

17 lines
370 B
YAML

name: commit-lint
on:
pull_request:
jobs:
commit-lint:
# Dependabot sometimes makes some really long commit messages and I can't stop it
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Commit lint
uses: ahmadnassri/action-conventional-commit-lint@v1.0.0
with:
token: ${{ github.token }}