Skip to content

Commit

Permalink
Restore retrieval of merge_commit_sha (#44890)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronrobertshaw authored Oct 12, 2022
1 parent 3983fee commit 500d50c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/cherry-pick.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ async function fetchPRs() {

const PRsWithMergeCommit = [];
for ( const PR of PRs ) {
const { mergeCommitHash } = await GitHubFetch(
const { merge_commit_sha: mergeCommitHash } = await GitHubFetch(
'/repos/WordPress/Gutenberg/pulls/' + PR.number
);
PRsWithMergeCommit.push( {
Expand Down

0 comments on commit 500d50c

Please sign in to comment.