generated from accelerator-blueprints/blueprint-github-action-typescipt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlabeler.yml
61 lines (57 loc) · 1.19 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: 1
labels:
# description labels
- label: "enhancement"
branch: "^feature/.*"
- label: "enhancement"
branch: "^enhancement/.*"
- label: "bug"
branch: "^fix/.*"
- label: "bug"
branch: "^bug/.*"
- label: "maintenance"
branch: "^chore/.*"
- label: "maintenance"
branch: "^task/.*"
- label: "maintenance"
branch: "^documentation/.*"
- label: "maintenance"
branch: "^cleanup/.*"
# WIP Label
- label: "WIP"
mergeable: false
# Type Labels
- label: documentation
files:
- "*.md"
- "docs/*"
- label: "build-definition"
files:
- ".github/*"
- "tsconfig.json"
- ".editorconfig"
- ".eslintrc.json"
- ".npmignore"
- ".npmrc"
- ".prettierignore"
- ".prettierrc.json"
- "action.yml"
- "package*.json"
- "tsconfig.json"
- "cucumber-config/*"
- label: "test"
files:
- "*.feature"
- "step-definitions/*"
- "cucumber-config/*"
- label: "code"
files:
- "src/*"
# PR Size Labels
- label: "PR-Size: S"
size-below: 100
- label: "PR-Size: M"
size-above: 99
size-below: 250
- label: "PR-Size: L"
size-above: 249