Skip to content

Commit

Permalink
Merge pull request #103 from darkrockmountain/develop
Browse files Browse the repository at this point in the history
chore(config): update release-drafter.yml
  • Loading branch information
DarkRockMountain-admin authored Nov 15, 2024
2 parents dad05ed + 0319601 commit fa00865
Showing 1 changed file with 69 additions and 27 deletions.
96 changes: 69 additions & 27 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,84 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
template: |
# What's Changed
$CHANGES
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION

categories:
- title: 'Breaking'
label: 'type: breaking'
- title: 'New'
label: 'type: feature'
- title: 'Bug Fixes'
label: 'type: bug'
- title: 'Maintenance'
label: 'type: maintenance'
- title: 'Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: 'Refactoring'
labels:
- 'refactor'
- 'refactoring'
- title: 'Documentation'
label: 'type: docs'
- title: 'Other changes'
- title: 'Dependency Updates'
label: 'type: dependencies'
labels:
- 'docs'
- 'documentation'
- title: 'Features'
labels:
- 'feat'
- 'feature'
- 'enhancement'
- title: 'Maintenance'
labels:
- 'chore'
- 'maintenance'
collapse-after: 5

autolabeler:
- label: 'docs'
files:
- '*.md'
branch:
- /docs\/.+/'
title:
- '/docs/\(/i'
- label: 'bug'
branch:
- '/fix\/.+/'
- '/Hotfix\/.+/'
title:
- '/fix/\(/i'
- label: 'enhancement'
branch:
- '/feature\/.+/'
title:
- '/feature/\(/i'
- '/feat/\(/i'
- label: 'chore'
branch:
- '/chore\/.+/'
title:
- '/chore/\(/i'
- label: 'refactor'
branch:
- '/refactor\/.+/'
title:
- '/refactor/\(/i'



version-resolver:
major:
labels:
- 'type: breaking'
- 'major'
minor:
labels:
- 'type: feature'
- 'minor'
patch:
labels:
- 'type: bug'
- 'type: maintenance'
- 'type: docs'
- 'type: dependencies'
- 'type: security'
- 'patch'
default: patch


template: |
## Description
This release marks the full release of version v$RESOLVED_VERSION with significant improvements and additions. Key changes include bug fixes, refactoring, updated documentation, new features, and maintenance updates.
## What's Changed
exclude-labels:
- 'skip-changelog'
$CHANGES
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION

0 comments on commit fa00865

Please sign in to comment.