We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9332dcd commit 8d4c2c2Copy full SHA for 8d4c2c2
eng/actions/backport/index.js
@@ -67,9 +67,7 @@ async function run() {
67
} catch { }
68
69
// download and apply patch
70
- let patch_url = github.context.payload.issue.pull_request.patch_url;
71
- patch_url = patch_url.replace("runtime", "RUNTIME");
72
- 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`);
73
74
const git_am_command = "git am --3way --ignore-whitespace --keep-non-patch changes.patch";
75
let git_am_output = `$ ${git_am_command}\n\n`;
0 commit comments