зеркало из https://github.com/mozilla/treeherder.git
Bug 1723101 - also check for branch 'main' when ingesting tasks without MOBILE_BASE_REPOSITORY set (#7230)
This commit is contained in:
Родитель
83fe95d7aa
Коммит
a788fc1d95
|
@ -138,14 +138,14 @@ def ignore_task(task, taskId, rootUrl, project):
|
||||||
ignore = True
|
ignore = True
|
||||||
for scope in scopes:
|
for scope in scopes:
|
||||||
# e.g. assume:repo:github.com/mozilla-mobile/fenix:branch:master
|
# e.g. assume:repo:github.com/mozilla-mobile/fenix:branch:master
|
||||||
if scope.find('branch:master') != -1:
|
if scope.find('branch:master') != -1 or scope.find('branch:main') != -1:
|
||||||
ignore = False
|
ignore = False
|
||||||
break
|
break
|
||||||
|
|
||||||
# This handles nightly tasks
|
# This handles nightly tasks
|
||||||
# e.g. index.mobile.v2.fenix.branch.master.latest.taskgraph.decision-nightly
|
# e.g. index.mobile.v2.fenix.branch.master.latest.taskgraph.decision-nightly
|
||||||
for route in decision_task["routes"]:
|
for route in decision_task["routes"]:
|
||||||
if route.find('master') != -1:
|
if route.find('master') != -1 or route.find('main') != -1:
|
||||||
ignore = False
|
ignore = False
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче