File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Source/GitReleaseManager/Configuration Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,14 @@ public Config()
34
34
this . IssueLabelsInclude = new List < string >
35
35
{
36
36
"Bug" ,
37
+ "Duplicate" ,
38
+ "Enhancement" ,
37
39
"Feature" ,
38
- "Improvement"
40
+ "Help Wanted" ,
41
+ "Improvement" ,
42
+ "Invalid" ,
43
+ "Question" ,
44
+ "WontFix"
39
45
} ;
40
46
41
47
this . IssueLabelsExclude = new List < string >
Original file line number Diff line number Diff line change @@ -54,8 +54,14 @@ public static void WriteSample(TextWriter writer)
54
54
writer . WriteLine ( @"# multiline-regex: true | false" ) ;
55
55
writer . WriteLine ( @"# issue-labels-include:" ) ;
56
56
writer . WriteLine ( @"# - Bug" ) ;
57
+ writer . WriteLine ( @"# - Duplicate" ) ;
58
+ writer . WriteLine ( @"# - Enhancement" ) ;
57
59
writer . WriteLine ( @"# - Feature" ) ;
60
+ writer . WriteLine ( @"# - Help Wanted" ) ;
58
61
writer . WriteLine ( @"# - Improvement" ) ;
62
+ writer . WriteLine ( @"# - Invalid" ) ;
63
+ writer . WriteLine ( @"# - Question" ) ;
64
+ writer . WriteLine ( @"# - WontFix" ) ;
59
65
writer . WriteLine ( @"# issue-labels-exclude:" ) ;
60
66
writer . WriteLine ( @"# - Internal Refactoring" ) ;
61
67
}
You can’t perform that action at this time.
0 commit comments