File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ const { socketYmlSchemaV1 } = require('./lib/v1')
11
11
/**
12
12
* @typedef SocketYmlGitHub
13
13
* @property {boolean } [enabled] enable/disable the Socket.dev GitHub app entirely
14
+ * @property {string[] } [ignoreUsers] list of GitHub usernames to ignore when creating reports
14
15
* @property {boolean } [projectReportsEnabled] enable/disable Github app project report checks
15
16
* @property {boolean } [pullRequestAlertsEnabled] enable/disable GitHub app pull request alert checks
16
17
*/
@@ -44,6 +45,11 @@ const socketYmlSchema = {
44
45
type : 'object' ,
45
46
properties : {
46
47
enabled : { type : 'boolean' , nullable : true } ,
48
+ ignoreUsers : {
49
+ type : 'array' ,
50
+ items : { type : 'string' } ,
51
+ nullable : true
52
+ } ,
47
53
projectReportsEnabled : { type : 'boolean' , nullable : true } ,
48
54
pullRequestAlertsEnabled : { type : 'boolean' , nullable : true } ,
49
55
} ,
You can’t perform that action at this time.
0 commit comments