disable bot notification spam (#68460)
* disable bot notification spam * add new key to botmeta sanity
This commit is contained in:
parent
e12cea2c7c
commit
c067beecda
2 changed files with 2 additions and 0 deletions
1
.github/BOTMETA.yml
vendored
1
.github/BOTMETA.yml
vendored
|
@ -1,4 +1,5 @@
|
||||||
automerge: false
|
automerge: false
|
||||||
|
notifications: false
|
||||||
files:
|
files:
|
||||||
.github/BOTMETA.yml:
|
.github/BOTMETA.yml:
|
||||||
labels: botmeta
|
labels: botmeta
|
||||||
|
|
|
@ -53,6 +53,7 @@ def main():
|
||||||
|
|
||||||
schema = Schema({
|
schema = Schema({
|
||||||
Required('automerge'): bool,
|
Required('automerge'): bool,
|
||||||
|
Required('notifications'): bool,
|
||||||
Required('files'): Any(None, *list_dict_file_schema),
|
Required('files'): Any(None, *list_dict_file_schema),
|
||||||
Required('macros'): dict, # Any(*list_macros_schema),
|
Required('macros'): dict, # Any(*list_macros_schema),
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue