From 4db8bdc0459c247d3f7adb9baf803c95b808ca1a Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Mon, 29 Mar 2021 12:25:15 +0100 Subject: [PATCH] ci(ci): ignore dependabot prs for commit message linting --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0672876..f007e7b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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