github.com/iotexproject/iotex-core@v1.14.1-rc1/.github/release-drafter.yml (about) 1 name-template: 'v$RESOLVED_VERSION' 2 tag-template: 'v$RESOLVED_VERSION' 3 template: | 4 # What's Changed 5 6 7 $CHANGES 8 9 10 **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION 11 12 categories: 13 - title: 'Breaking' 14 label: 'type: breaking' 15 - title: 'New' 16 label: 'type: feature' 17 - title: 'Bug Fixes' 18 label: 'type: bug' 19 - title: 'Maintenance' 20 label: 'type: maintenance' 21 - title: 'Documentation' 22 label: 'type: docs' 23 - title: 'Other changes' 24 - title: 'Dependency Updates' 25 label: 'type: dependencies' 26 collapse-after: 5 27 28 version-resolver: 29 major: 30 labels: 31 - 'type: breaking' 32 minor: 33 labels: 34 - 'type: feature' 35 patch: 36 labels: 37 - 'type: bug' 38 - 'type: maintenance' 39 - 'type: docs' 40 - 'type: dependencies' 41 - 'type: security' 42 43 exclude-labels: 44 - 'skip-changelog'