diff --git a/.github/auto-labeler-config.yaml b/.github/auto-labeler-config.yaml new file mode 100644 index 0000000..9d8f164 --- /dev/null +++ b/.github/auto-labeler-config.yaml @@ -0,0 +1,24 @@ +--- + +conventional-commits: + - type: 'fix' + nouns: ['FIX', 'Fix', 'fix', 'FIXED', 'Fixed', 'fixed'] + labels: ['bug'] + - type: 'feature' + nouns: ['FEATURE', 'Feature', 'feature', 'FEAT', 'Feat', 'feat'] + labels: ['enhancement'] + - type: 'breaking_change' + nouns: ['BREAKING CHANGE', 'BREAKING', 'MAJOR'] + labels: ['breaking-change'] + - type: 'refactor' + nouns: ['refactor','Refactor'] + labels: ['refactor'] + - type: 'documentation' + nouns: ['doc','document','documentation'] + labels: ['documentation'] + - type: 'build' + nouns: ['build','rebuild'] + labels: ['build'] + - type: 'config' + nouns: ['config', 'conf', 'cofiguration', 'configure'] + labels: ['config'] diff --git a/.github/release-drafter-config.yml b/.github/release-drafter-config.yml new file mode 100644 index 0000000..a0b903e --- /dev/null +++ b/.github/release-drafter-config.yml @@ -0,0 +1,43 @@ +name-template: 'v$RESOLVED_VERSION' +tag-template: 'v$RESOLVED_VERSION' + + +categories: + - title: '💥 Breaking Changes' + labels: + - breaking-change + - title: '🚀 New Features' + labels: + - feature + - enhancement + - title: '🐛 Bug Fixes' + labels: + - bug + - fix + - bugfix + - title: '🛠️ Technical Debt' + labels: + - refactor + +change-template: '- $TITLE (#$NUMBER) by @$AUTHOR' +no-changes-template: 'No significant changes' + +template: | + ## 🚀 Release + + ### What's Changed + $CHANGES + + **Contributors:** $CONTRIBUTORS + +version-resolver: + major: + labels: + - major + minor: + labels: + - minor + patch: + labels: + - patch + default: patch