Skip to content

Commit

Permalink
refactor: refactor project naming and changelog categories
Browse files Browse the repository at this point in the history
- Update project name from `queue` to `autotls`
- Adjust regex patterns for changelog titles
- Change `use` field value from `git` to `github`
- Modify changelog titles from `Bug fixes` to `Bug fixes`, `Enhancements` to `Refactor`
- Update exclusion patterns for changelog categories

Signed-off-by: appleboy <[email protected]>
  • Loading branch information
appleboy committed Mar 31, 2024
1 parent cd74fe7 commit a379eaf
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
project_name: queue
project_name: autotls

builds:
-
# If true, skip the build.
- # If true, skip the build.
# Useful for library projects.
# Default is false
skip: true
Expand All @@ -21,7 +20,7 @@ changelog:
# - `github-native`: uses the GitHub release notes generation API, disables the groups feature.
#
# Defaults to `git`.
use: git
use: github

# Sorts the changelog by the commit's messages.
# Could either be asc, desc or empty
Expand All @@ -36,13 +35,13 @@ changelog:
# Default is no groups.
groups:
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: 'Bug fixes'
regexp: "^.*fix[(\\w)]*:+.*$"
- title: "Bug fixes"
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: 'Enhancements'
regexp: "^.*chore[(\\w)]*:+.*$"
- title: "Refactor"
regexp: '^.*?refactor(\([[:word:]]+\))??!?:.+$'
order: 2
- title: Others
order: 999
Expand All @@ -52,6 +51,6 @@ changelog:
# the changelog
# Default is empty
exclude:
- '^docs'
- 'CICD'
- "^docs"
- "CICD"
- typo

0 comments on commit a379eaf

Please sign in to comment.