Skip to content

Commit

Permalink
ci(ci): ignore dependabot prs for commit message linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Frazer Smith committed Mar 29, 2021
1 parent 1f6c64c commit 4db8bdc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:

commit-lint:
name: Lint Commit Messages
if: github.event.pull_request.draft == false
if: >
github.event.pull_request.draft == false &&
github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
Expand Down

0 comments on commit 4db8bdc

Please sign in to comment.