Skip to content

Commit

Permalink
internal: include lastCommitSha and prNumber in metadata for skymp5-p…
Browse files Browse the repository at this point in the history
  • Loading branch information
Pospelove authored Dec 4, 2024
1 parent 9566037 commit 9705011
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/pr_base/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
}
});
}
Expand Down

0 comments on commit 9705011

Please sign in to comment.