1
0
Fork 0

For #5369 - Fix push() call in old decision task (#5373)

master
Johan Lorenzo 2019-09-17 12:10:26 +02:00 committed by GitHub
parent 2b71af4087
commit 25db27e448
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -47,9 +47,9 @@ def pr(builder):
return tasks
def push():
def push(builder):
# We want the same tasks on pushes than on PRs, for now.
return pr()
return pr(builder)
def raptor(builder, is_staging):
mozharness_task_id = fetch_mozharness_task_id()