github.com/gofiber/fiber/v2@v2.47.0/.github/release-drafter.yml (about)

     1  name-template: 'v$RESOLVED_VERSION'
     2  tag-template: 'v$RESOLVED_VERSION'
     3  categories:
     4      - title: '๐Ÿš€ New'
     5        labels:
     6            - 'โœ๏ธ Feature'
     7      - title: '๐Ÿงน Updates'
     8        labels:
     9            - '๐Ÿงน Updates'
    10            - '๐Ÿค– Dependencies'
    11      - title: '๐Ÿ› Fixes'
    12        labels:
    13            - 'โ˜ข๏ธ Bug'
    14      - title: '๐Ÿ“š Documentation'
    15        labels:
    16            - '๐Ÿ“’ Documentation'
    17  change-template: '- $TITLE (#$NUMBER)'
    18  change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
    19  version-resolver:
    20      major:
    21          labels:
    22              - 'major'
    23      minor:
    24          labels:
    25              - 'minor'
    26              - 'โœ๏ธ Feature'
    27      patch:
    28          labels:
    29              - 'patch'
    30              - '๐Ÿ“’ Documentation'
    31              - 'โ˜ข๏ธ Bug'
    32              - '๐Ÿค– Dependencies'
    33              - '๐Ÿงน Updates'
    34      default: patch
    35  template: |
    36      $CHANGES
    37  
    38      **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
    39  
    40      Thank you $CONTRIBUTORS for making this update possible.