Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions eng/actions/backport/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,7 @@ async function run() {
} catch { }

// download and apply patch
let patch_url = github.context.payload.issue.pull_request.patch_url;
patch_url = patch_url.replace("runtime", "RUNTIME");
await exec.exec(`curl -sSL "${patch_url}" --output changes.patch`);
await exec.exec(`curl -sSL "${github.context.payload.issue.pull_request.patch_url}" --output changes.patch`);

const git_am_command = "git am --3way --ignore-whitespace --keep-non-patch changes.patch";
let git_am_output = `$ ${git_am_command}\n\n`;
Expand Down