Skip to content

Commit baf2d86

Browse files
authored
Fix exclusion of Dependabot commit message checks (#40)
To ignore the Dependabot branches we need to use `**` at the end of our filter, as [the single `*` we had before does not match the `/` character][1] [1]: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
1 parent 58a7dcf commit baf2d86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on: # yamllint disable-line rule:truthy
88
- reopened
99
- synchronize
1010
branches-ignore:
11-
- '*dependabot/github_actions/*'
11+
- '*dependabot/github_actions/**'
1212
push:
1313
branches-ignore:
14-
- '*dependabot/github_actions/*'
14+
- '*dependabot/github_actions/**'
1515

1616
jobs:
1717
check-commit-message-style:

0 commit comments

Comments
 (0)