Skip to content

Commit f7dd740

Browse files
authored
Fix exclusion of Dependabot commit message checks (#43)
Need brackets to group the expressions properly
1 parent a9081f9 commit f7dd740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-commit-message.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on: # yamllint disable-line rule:truthy
1111

1212
jobs:
1313
check-commit-message-style:
14-
if: github.actor!= 'dependabot[bot]' && contains(github.head_ref, 'dependabot/github_actions/') == false
14+
if: (github.actor!= 'dependabot[bot]') && (contains(github.head_ref, 'dependabot/github_actions/') == false)
1515
name: Check commit message style
1616
runs-on: ubuntu-latest
1717
steps:

0 commit comments

Comments
 (0)