Skip to content

Commit

Permalink
feat: properly handle chore(deps) (#128)
Browse files Browse the repository at this point in the history
In some projects we already moved the dependabot configs to chore
instead of feat, this fixes the changelog grouping to comport it.
  • Loading branch information
caarlos0 authored Feb 1, 2024
1 parent b830752 commit 78566d1
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion goreleaser-full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ changelog:
- go mod tidy
groups:
- title: Dependency updates
regexp: "^.*feat\\(deps\\)*:+.*$"
regexp: "^.*\\(deps\\)*:+.*$"
order: 300
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
Expand Down
2 changes: 1 addition & 1 deletion goreleaser-lib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ changelog:
- go mod tidy
groups:
- title: Dependency updates
regexp: "^.*feat\\(deps\\)*:+.*$"
regexp: "^.*\\(deps\\)*:+.*$"
order: 300
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
Expand Down
2 changes: 1 addition & 1 deletion goreleaser-mods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ changelog:
- go mod tidy
groups:
- title: Dependency updates
regexp: "^.*feat\\(deps\\)*:+.*$"
regexp: "^.*\\(deps\\)*:+.*$"
order: 300
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
Expand Down
2 changes: 1 addition & 1 deletion goreleaser-semi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ changelog:
- go mod tidy
groups:
- title: Dependency updates
regexp: "^.*feat\\(deps\\)*:+.*$"
regexp: "^.*\\(deps\\)*:+.*$"
order: 300
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
Expand Down
2 changes: 1 addition & 1 deletion goreleaser-simple.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ changelog:
- go mod tidy
groups:
- title: Dependency updates
regexp: "^.*feat\\(deps\\)*:+.*$"
regexp: "^.*\\(deps\\)*:+.*$"
order: 300
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
Expand Down
2 changes: 1 addition & 1 deletion goreleaser-soft-serve.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ changelog:
- go mod tidy
groups:
- title: Dependency updates
regexp: "^.*feat\\(deps\\)*:+.*$"
regexp: "^.*\\(deps\\)*:+.*$"
order: 300
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
Expand Down
2 changes: 1 addition & 1 deletion goreleaser-vhs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ changelog:
- go mod tidy
groups:
- title: Dependency updates
regexp: "^.*feat\\(deps\\)*:+.*$"
regexp: "^.*\\(deps\\)*:+.*$"
order: 300
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
Expand Down
2 changes: 1 addition & 1 deletion goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ changelog:
- go mod tidy
groups:
- title: Dependency updates
regexp: "^.*feat\\(deps\\)*:+.*$"
regexp: "^.*\\(deps\\)*:+.*$"
order: 300
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
Expand Down

0 comments on commit 78566d1

Please sign in to comment.