diff --git a/find-successful-workflow.ts b/find-successful-workflow.ts index 788cbcc..0ea3a92 100644 --- a/find-successful-workflow.ts +++ b/find-successful-workflow.ts @@ -197,6 +197,7 @@ async function findMergeBaseRef(): Promise { function findMergeQueuePr(): string { const { head_ref, base_sha } = github.context.payload.merge_group; + console.log({ head_ref, base_sha }) const result = new RegExp( `^refs/heads/gh-readonly-queue/${mainBranchName}/pr-(\\d+)-${base_sha}$` ).exec(head_ref);