1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
exclude-labels:
# When PR will not be classified if it has these labels
- skip changelog
- release
name-template: 'Sparse v$RESOLVED_VERSION'
change-template: '- $TITLE (#$NUMBER)'
autolabeler:
- label: breaking
title:
# Example: feat!: ...
- '/^(build|chore|ci|depr|docs|feat|fix|perf|refactor|release|test)(\(.*\))?\!\: /'
- label: build
title:
- '/^(build)/'
- label: internal
title:
- '/^(chore|ci|refactor|test)/'
- label: deprecation
title:
- '/^depr/'
- label: documentation
title:
- '/^(docs|docstring)/'
- label: enhancement
title:
- '/^feat/'
- label: fix
title:
- '/^fix/'
- label: performance
title:
- '/^perf/'
- label: release
title:
- '/^release/'
- label: 'skip changelog'
title:
- '/^\[pre-commit.ci\]/'
categories:
- title: ๐ฃ Highlights
labels: highlight
- title: ๐งจ Breaking changes
labels:
- breaking
- breaking python
- title: ๐ง Deprecations
labels: deprecation
- title: ๐ช Performance improvements
labels: performance
- title: ๐ Enhancements
labels: enhancement
- title: ๐ Bug fixes
labels: fix
- title: ๐ Documentation
labels: documentation
- title: ๐งฐ Build system
labels: build
- title: ๐ง Other improvements
labels: internal
template: |
## Changes
$CHANGES
Thank you to all our contributors for making this release possible!
$CONTRIBUTORS
|