Bug 1723101 - also check for branch 'main' when ingesting tasks without MOBILE_BASE_REPOSITORY set (#7230)

This commit is contained in:
Sebastian Hengst 2021-08-04 15:00:22 +02:00 коммит произвёл GitHub
Родитель 83fe95d7aa
Коммит a788fc1d95
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -138,14 +138,14 @@ def ignore_task(task, taskId, rootUrl, project):
ignore = True
for scope in scopes:
# 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
break
# This handles nightly tasks
# e.g. index.mobile.v2.fenix.branch.master.latest.taskgraph.decision-nightly
for route in decision_task["routes"]:
if route.find('master') != -1:
if route.find('master') != -1 or route.find('main') != -1:
ignore = False
break