2022-09-03 03:37:31 -07:00
|
|
|
const childProcess = require("child_process");
|
|
|
|
|
2022-09-08 07:12:27 -07:00
|
|
|
if (!process.env.UPTIME_KUMA_GH_REPO) {
|
|
|
|
console.error("Please set a repo to the environment variable 'UPTIME_KUMA_GH_REPO' (e.g. mhkarimi1383:goalert-notification)");
|
2022-09-03 03:37:31 -07:00
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2022-09-08 07:12:27 -07:00
|
|
|
let inputArray = process.env.UPTIME_KUMA_GH_REPO.split(":");
|
|
|
|
|
|
|
|
if (inputArray.length !== 2) {
|
|
|
|
console.error("Invalid format. Please set a repo to the environment variable 'UPTIME_KUMA_GH_REPO' (e.g. mhkarimi1383:goalert-notification)");
|
|
|
|
}
|
|
|
|
|
|
|
|
let name = inputArray[0];
|
|
|
|
let branch = inputArray[1];
|
|
|
|
|
2022-09-03 03:37:31 -07:00
|
|
|
console.log("Checkout pr");
|
|
|
|
|
|
|
|
// Checkout the pr
|
2022-09-08 07:12:27 -07:00
|
|
|
childProcess.spawnSync("git", [ "remote", "add", name, `https://github.com/${name}/uptime-kuma` ]);
|
|
|
|
childProcess.spawnSync("git", [ "checkout", `name/${branch}`, "--force" ]);
|