We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e88d2d6 commit 3f9a016Copy full SHA for 3f9a016
obspy_github_api/obspy_github_api.py
@@ -334,7 +334,7 @@ def get_docker_build_targets(
334
for name in branches:
335
branch = repo.branch(name)
336
sha = branch.commit.sha
337
- status = get_commit_status(sha)
+ status = get_commit_status(sha, context=context)
338
if status not in status_needs_build:
339
continue
340
# branches don't have a PR number, use dummy placeholder 'XXX' so
@@ -346,7 +346,7 @@ def get_docker_build_targets(
346
for pr in open_prs:
347
fork = pr.head.user
348
sha = pr.head.sha
349
350
351
352
targets.append('{}_{}:{}'.format(str(pr.number), fork, sha))
0 commit comments