Skip to content

Commit

Permalink
docs: update changelog section titles and regex patterns
Browse files Browse the repository at this point in the history
- Fix a typo in the `.goreleaser.yaml` file
- Update the title of the "Bug fixes" section in the `changelog`
- Update the title of the "Enhancements" section in the `changelog`
- Update the regex patterns in the `changelog` for the "docs" and "CICD" categories

Signed-off-by: Bo-Yi Wu <[email protected]>
  • Loading branch information
appleboy committed Oct 9, 2023
1 parent f378232 commit 03d5b2c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
project_name: queue

builds:
-
# If true, skip the build.
- # If true, skip the build.
# Useful for library projects.
# Default is false
skip: true
Expand Down Expand Up @@ -38,10 +37,10 @@ changelog:
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bug fixes'
- title: "Bug fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: 'Enhancements'
- title: "Enhancements"
regexp: "^.*chore[(\\w)]*:+.*$"
order: 2
- title: Others
Expand All @@ -52,6 +51,6 @@ changelog:
# the changelog
# Default is empty
exclude:
- '^docs'
- 'CICD'
- "^docs"
- "CICD"
- typo

0 comments on commit 03d5b2c

Please sign in to comment.