Skip to content

Commit

Permalink
fix: release-plz changelog format
Browse files Browse the repository at this point in the history
  • Loading branch information
beeb committed Oct 1, 2023
1 parent 3188022 commit 4d04f12
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 38 deletions.
24 changes: 0 additions & 24 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,6 @@

All notable changes to this project will be documented in this file.


## [Unreleased]

### Added

- Add release-plz

### Changed

- Update aws sdk
- Bump actions/checkout from 3 to 4
- Bump robinraju/release-downloader from 1.7 to 1.8
- Bump docker/metadata-action from 4 to 5
- Bump docker/setup-buildx-action from 2 to 3
- Bump docker/setup-qemu-action from 2 to 3
- Update config
- Adjust git-cliff config for release-plz compatibility
- Adjust changelog format

### Fixed

- Fix missing secret
- Fix changelog format

## [0.3.4] - 2023-08-27

### Changed
Expand Down
26 changes: 12 additions & 14 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
header = """
# Changelog\n
All notable changes to this project will be documented in this file.\n
## [Unreleased]
"""

body = """
Expand All @@ -30,18 +28,18 @@ filter_unconventional = true
split_commits = false

commit_parsers = [
{ body = ".*security", group = "Security" },
{ message = "^chore: release", skip = true },
{ message = "^chore: update changelog", skip = true },
{ message = "^.*: add", group = "Added" },
{ message = "^.*: support", group = "Added" },
{ message = "^.*: remove", group = "Removed" },
{ message = "^.*: delete", group = "Removed" },
{ message = "^test", group = "Fixed" },
{ message = "^fix", group = "Fixed" },
{ message = "^doc", group = "Documentation" },
{ message = "^.*: fix", group = "Fixed" },
{ message = "^.*", group = "Changed" },
{ body = ".*security", group = "Security" },
{ message = "^chore: release", skip = true },
{ message = "^chore: update changelog", skip = true },
{ message = "^.*: add", group = "Added" },
{ message = "^.*: support", group = "Added" },
{ message = "^.*: remove", group = "Removed" },
{ message = "^.*: delete", group = "Removed" },
{ message = "^test", group = "Fixed" },
{ message = "^fix", group = "Fixed" },
{ message = "^doc", group = "Documentation" },
{ message = "^.*: fix", group = "Fixed" },
{ message = "^.*", group = "Changed" },
] # regex for parsing and grouping commits

# protect breaking changes from being skipped due to matching a skipping commit_parser
Expand Down

0 comments on commit 4d04f12

Please sign in to comment.