Skip to content

Commit ced614c

Browse files
authored
Add commit-message prefix to dependabot (#77)
As mentioned in #76, this should hopefully allow us to filter bot commits from future changelogs.
1 parent 7a3e369 commit ced614c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ updates:
44
directory: /
55
schedule:
66
interval: weekly
7+
commit-message:
8+
prefix-development: "chore(dependabot)"
79
groups:
810
ci-dependencies:
911
applies-to: version-updates
@@ -15,6 +17,8 @@ updates:
1517
directory: /
1618
schedule:
1719
interval: weekly
20+
commit-message:
21+
prefix-development: "chore(dependabot)"
1822
groups:
1923
rust-dependencies:
2024
applies-to: version-updates

cliff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ commit_preprocessors = [
6969
]
7070
# Commit grouping
7171
commit_parsers = [
72-
{ message = "^Bump", skip = true },
7372
{ message = "^chore(release):", skip = true},
73+
{ message = "^chore(dependabot):", skip = true},
7474
]
7575
# protect breaking changes from being skipped due to matching a skipping commit_parser
7676
protect_breaking_commits = false

0 commit comments

Comments
 (0)