Bug 1700621: Add needinfo field to the moz.yaml schema r=jewilde

Differential Revision: https://phabricator.services.mozilla.com/D109615
This commit is contained in:
Tom Ritter 2021-03-24 17:17:11 +00:00
Родитель 011d247a9b
Коммит 7d6a463f12
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -201,6 +201,7 @@ updatebot:
"branch": "foo",
"enabled": False,
"cc": ["b@example.com"],
"needinfo": ["c@example.com"],
},
],
},
@ -232,6 +233,7 @@ updatebot:
enabled: False
branch: foo
cc: ["b@example.com"]
needinfo: ["c@example.com"]
""".strip(),
),
# -------------------------------------------------
@ -263,6 +265,7 @@ updatebot:
"branch": "foo",
"enabled": False,
"cc": ["b@example.com", "c@example.com"],
"needinfo": ["d@example.com", "e@example.com"],
},
{
"type": "commit-alert",
@ -300,6 +303,9 @@ updatebot:
cc:
- b@example.com
- c@example.com
needinfo:
- d@example.com
- e@example.com
- type: commit-alert
filter: none
source-extensions:

2
python/mozbuild/mozbuild/vendor/moz_yaml.py поставляемый
Просмотреть файл

@ -127,6 +127,7 @@ updatebot:
- type: commit-alert
branch: upstream-branch-name
cc: ["bugzilla@email.address", "another@example.com"]
needinfo: ["bugzilla@email.address", "another@example.com"]
enabled: True
filter: security
- type: vendoring
@ -367,6 +368,7 @@ def _schema_1():
"branch": All(str, Length(min=1)),
"enabled": Boolean(),
"cc": Unique([str]),
"needinfo": Unique([str]),
"filter": In(
[
"none",