From d8bc2d7a5047bf370363cc00278deb9e71b68e2b Mon Sep 17 00:00:00 2001 From: NetcrackerCLPLCI Date: Tue, 20 May 2025 08:28:53 +0000 Subject: [PATCH 1/2] chore: update of common config files --- .github/auto-labeler-config.yaml | 23 ++++++++++++++ .github/release-drafter-config.yml | 50 ++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 .github/auto-labeler-config.yaml create mode 100644 .github/release-drafter-config.yml diff --git a/.github/auto-labeler-config.yaml b/.github/auto-labeler-config.yaml new file mode 100644 index 0000000..2f4904b --- /dev/null +++ b/.github/auto-labeler-config.yaml @@ -0,0 +1,23 @@ +--- +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: ['docs', 'doc', 'document', 'documentation'] + labels: ['documentation'] + - type: 'build' + nouns: ['build', 'rebuild'] + labels: ['build'] + - type: 'config' + nouns: ['config', 'conf', 'configuration', 'configure'] + labels: ['config'] diff --git a/.github/release-drafter-config.yml b/.github/release-drafter-config.yml new file mode 100644 index 0000000..8bfd8f3 --- /dev/null +++ b/.github/release-drafter-config.yml @@ -0,0 +1,50 @@ +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 + - title: '📝 Documentation' + labels: + - documentation + +change-template: | + - (#$NUMBER) $TITLE by @$AUTHOR + +no-changes-template: 'No significant changes' + +template: | + ## 🚀 Release + + ### What's Changed + $CHANGES + + --- + + **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION + +version-resolver: + major: + labels: + - major + minor: + labels: + - minor + patch: + labels: + - patch + default: patch From 2aae6897e4a44153088e6e483901a640dffa52e1 Mon Sep 17 00:00:00 2001 From: NetcrackerCLPLCI Date: Tue, 10 Jun 2025 09:27:35 +0000 Subject: [PATCH 2/2] chore: update of common config files --- .github/release-drafter-config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/release-drafter-config.yml b/.github/release-drafter-config.yml index 8bfd8f3..1687859 100644 --- a/.github/release-drafter-config.yml +++ b/.github/release-drafter-config.yml @@ -22,8 +22,7 @@ categories: labels: - documentation -change-template: | - - (#$NUMBER) $TITLE by @$AUTHOR +change-template: "- (#$NUMBER) $TITLE by @$AUTHOR" no-changes-template: 'No significant changes'