-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlabeler.yml
45 lines (42 loc) · 1017 Bytes
/
labeler.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
# Types
'type: refactoring 🛠':
title: '^refactor(\(.+\))?:.*'
'type: bug / fix 🐞':
title: '^(run)?fix(\(.+\))?:.*'
'type: chore 🧹':
title: '^chore(\(.+\))?:.*'
'type: documentation 📋':
title: '^docs(\(.+\))?:.*'
'type: feature ✨':
title: '^feat(\(.+\))?:.*'
'type: test 👷':
title: '^test(\(.+\))?:.*'
# Sizes
'👕 size: XS':
size-below: 10
'👕 size: S':
size-above: 9
size-below: 100
'👕 size: M':
size-above: 99
size-below: 300
'👕 size: L':
size-above: 299
size-below: 500
'👕 size: XL':
size-above: 499
size-below: 1000
'👕 size: XXL':
size-above: 999
# Components (disabled)
#'comp: Crypto':
# files:
# - 'cryptography/.*'
#'comp: Logic':
# files:
# - 'logic/.*'
# Danger zone, potential breaking api changes
'🚨 Potential breaking changes':
files:
- 'logic/src/commonMain/kotlin/com/wire/kalium/logic/data/.*'
- 'logic/src/commonMain/kotlin/com/wire/kalium/logic/feature/.*'