-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathrelease-drafter.yml
77 lines (70 loc) · 1.59 KB
/
release-drafter.yml
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
70
71
72
73
74
75
76
77
exclude-labels:
- skip changelog
- release
name-template: 'Narwhals v$RESOLVED_VERSION'
change-template: '- $TITLE (#$NUMBER)'
autolabeler:
- label: breaking
title:
# Example: feat!: ...
- '/^([Bb]uild|[Cc]hore|CI|ci|[Dd]epr|[Dd]oc|DOC|[Ff]eat|[Ff]ix|[Pp]erf|[Rr]efactor|[Rr]elease|[Tt]est)\! /'
- label: build
title:
- '/^([Bb]uild)/'
- label: internal
title:
- '/^(chore|ci|refactor|test|template|bench|Chore|CI|Refactor|Test|Template|Bench)/'
- label: deprecation
title:
- '/^([Dd]epr)/'
- label: documentation
title:
- '/^([Dd]oc|DOC)/'
- label: enhancement
title:
- '/^(feat|enh|Feat|ENH|Enh)/'
- label: fix
title:
- '/^([Ff]ix)/'
- label: performance
title:
- '/^([Pp]erf)/'
- label: release
title:
- '/^([Rr]elease)/'
version-resolver:
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'
default: patch
categories:
- title: 🏆 Highlights
labels: highlight
- title: 💥 Breaking changes
labels:
- breaking
- 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