diff --git a/.github/release-drafter-config.yml b/.github/release-drafter-config.yml index a0c2b622..1895743c 100644 --- a/.github/release-drafter-config.yml +++ b/.github/release-drafter-config.yml @@ -4,14 +4,24 @@ categories: - title: 'πŸš€ Features' labels: - 'feature' + collapse-after: 5 + - title: '✨ Improvements' + labels: - 'enhancement' - - title: 'πŸ› Bug Fixes' + collapse-after: 5 + - title: 'πŸ› οΈ Bug Fixes' labels: - 'bug fix' + collapse-after: 5 - title: '🧰 Maintenance' labels: - 'refactor' + collapse-after: 5 + - title: 'πŸ“¦ Dependencies' + labels: - 'dependencies' + collapse-after: 5 + - title: 'πŸ”– Other changes' autolabeler: - label: 'docs' files: @@ -22,37 +32,39 @@ autolabeler: branch: - '/bugfix\/.+/' - '/hotfix\/.+/' - title: - - '/fix/i' - label: 'feature' branch: - '/feature\/.+/' - label: 'enhancement' branch: - '/enhancement\/.+/' + - label: 'refactor' + branch: + - '/refactor\/.+/' - label: 'dependencies' branch: - '/dependencies\/.+/' - '/renovate\/.+/' -change-template: '- $TITLE @$AUTHOR (#$NUMBER)' +change-template: '- $TITLE by @$AUTHOR in #$NUMBER' change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. version-resolver: major: labels: - - 'major' + - 'breaking' minor: labels: - - 'minor' - 'enhancement' - 'feature' patch: labels: - - 'patch' - - 'bugfix' - - 'hotfix' + - 'bug fix' - 'dependencies' - 'refactor' +exclude-labels: + - 'skip-changelog' template: | - ## What’s Changed + # What's Changed $CHANGES + + **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION diff --git a/.github/renovate.json b/.github/renovate.json index 9abde40d..f851a739 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -3,9 +3,6 @@ "extends": [ "config:base" ], - "labels": [ - "dependencies" - ], "baseBranches": [ "develop" ],