Merge pull request #235 from ttshivers/ci_commitlint_allow_dependabot_error

ci(commitlint): allow error on Dependabot PRs
This commit is contained in:
Travis Shivers 2020-10-02 12:51:52 -05:00 committed by GitHub
commit 930698d3b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ jobs:
steps:
- name: Commit lint
# Dependabot sometimes makes some really long commit messages and I can't stop it
continue-on-error: ${{ github.actor == 'dependabot[bot]' }}
continue-on-error: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') }}
uses: ahmadnassri/action-conventional-commit-lint@v1.0.0
with:
token: ${{ github.token }}