Skip to content

Commit

Permalink
Rebuild gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Aug 8, 2024
1 parent 06bf185 commit f473ea4
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12774,7 +12774,10 @@ async function run() {
});
const prNumForCPMergeCommit = commit.message.match(/Merge pull request #(\d+)[\S\s]*\(cherry picked from commit .*\)/);
if (prNumForCPMergeCommit?.at(1) === String(prNumber)) {
deployer = commit.committer.name;
const cpActor = commit.message.match(/.*\(CP triggered by (.*)\)/)?.at(1);
if (cpActor) {
deployer = cpActor;
}
break;
}
}
Expand Down

0 comments on commit f473ea4

Please sign in to comment.