We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 905238a + 3c997c8 commit 6a033caCopy full SHA for 6a033ca
.github/workflows/pr-checks.yaml
@@ -102,7 +102,6 @@ jobs:
102
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
103
104
pre-commit:
105
- if: ${{ github.actor != 'dependabot[bot]' || github.actor != 'dependabot' }}
106
runs-on: ubuntu-latest
107
steps:
108
- name: Checkout source
@@ -118,7 +117,8 @@ jobs:
118
117
run: pre-commit run --all-files
119
120
commit-msg-check:
121
+ # NOTE: Skipping the commit-msg check for dependabot PRs
+ if: ${{ !startsWith(github.actor, 'dependabot') }}
122
123
124
0 commit comments