diff --git a/.github/actions/pr_base/action.yml b/.github/actions/pr_base/action.yml index 2208e307c8..8d811e8d13 100644 --- a/.github/actions/pr_base/action.yml +++ b/.github/actions/pr_base/action.yml @@ -237,7 +237,11 @@ runs: return refInfo; } else { - return { refInfoHash: crypto.createHash('sha256').update(refInfo.ref).digest('hex') }; + return { + refInfoHash: crypto.createHash('sha256').update(refInfo.ref).digest('hex'), + lastCommitSha: refInfo.lastCommitSha, + prNumber: refInfo.prNumber + }; } }); }