Skip to content

Commit c183a08

Browse files
committed
Add KeywordLabeler app configuration
This app automatically adds labels based on keywords found in the title and description of an issue. For more information check: https://github.com/ZeWaka/KeywordLabeler#readme Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 8bae9b7 commit c183a08

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/keylabeler.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# KeywordLabeler app configuration. For more information check:
2+
# https://github.com/ZeWaka/KeywordLabeler#readme
3+
4+
# Determines if we search the title (optional). Defaults to true.
5+
matchTitle: true
6+
7+
# Determines if we search the body (optional). Defaults to true.
8+
matchBody: true
9+
10+
# Determines if label matching is case sensitive (optional). Defaults to true.
11+
caseSensitive: true
12+
13+
# Explicit keyword mappings to labels. Form of match:label. Required.
14+
labelMappings:
15+
"part:channels": "part:channels"
16+
"part:docs": "part:docs"
17+
"part:tests": "part:tests"
18+
"part:tooling": "part:tooling"
19+
"part:❓": "part:❓"
20+
"version:0.1.x": "version:0.1.x"
21+
"version:old": "version:old"
22+
"version:❓": "version:❓"

0 commit comments

Comments
 (0)