File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,13 @@ You can use the REST API to manage labels for a repository and add or remove lab
10
10
``` yaml
11
11
# These settings are synced to GitHub by https://github.com/github/safe-settings
12
12
labels :
13
- - name : bug
14
- color : CC0000
15
- description : An issue with the system
13
+ include :
14
+ - name : bug
15
+ color : CC0000
16
+ description : An issue with the system
17
+ exclude :
18
+ # don't delete any labels that start with "release"
19
+ - name : ^release
16
20
` ` `
17
21
18
22
## Team API Spec
Original file line number Diff line number Diff line change 75
75
"description" : " Ignore any labels matching these regexes (don't delete them)" ,
76
76
"type" : " array" ,
77
77
"items" : {
78
- "type" : " string"
78
+ "type" : " object" ,
79
+ "properties" : {
80
+ "name" : {
81
+ "type" : " string"
82
+ }
83
+ }
79
84
}
80
85
}
81
86
}
You can’t perform that action at this time.
0 commit comments