We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ad919e commit 2a9f720Copy full SHA for 2a9f720
run-queue
@@ -197,10 +197,12 @@ failed with exit code %i. Please check the container logs for details.""" % (cmd
197
if delivery_tag is not None:
198
dq.channel.basic_ack(delivery_tag)
199
200
+ print(f"\n\n\njob_sub: {job_subj}")
201
if job_subj is not None:
202
repo = get_str(job_subj, 'repo')
203
pull = get_int(job_subj, 'pull')
204
sha = get_str(job_subj, 'sha')
205
+ print(f"\nrepo: {repo},\npull: {pull},\nsha {sha}")
206
# skip automerge if jobs don't run against a PR
207
if repo is not None and pull is not None and sha is not None:
208
auto_merge_bots_pr(repo, pull, sha)
0 commit comments