From dcdcae8ea2c4a3f1c959bdecf998e9b9542e663c Mon Sep 17 00:00:00 2001 From: Travis Shivers Date: Fri, 2 Oct 2020 17:14:50 -0500 Subject: [PATCH] ci(commitlint): allow failure if dependabot actor --- .github/workflows/commit-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 07673a79..e4990a78 100644 --- a/.github/workflows/commit-lint.yml +++ b/.github/workflows/commit-lint.yml @@ -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: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') }} + continue-on-error: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') || github.actor == 'dependabot[bot]' }} uses: ahmadnassri/action-conventional-commit-lint@v1.0.0 with: token: ${{ github.token }}