2022-09-03 10:37:31 +00:00
|
|
|
const childProcess = require("child_process");
|
|
|
|
|
2022-09-08 14:12:27 +00: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 10:37:31 +00:00
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2022-09-08 14:12:27 +00: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 10:37:31 +00:00
|
|
|
console.log("Checkout pr");
|
|
|
|
|
|
|
|
// Checkout the pr
|
2022-09-08 14:36:34 +00:00
|
|
|
let result = childProcess.spawnSync("git", [ "remote", "add", name, `https://github.com/${name}/uptime-kuma` ]);
|
|
|
|
|
2022-09-08 14:40:45 +00:00
|
|
|
console.log(result.stdout.toString());
|
|
|
|
console.error(result.stderr.toString());
|
2022-09-08 14:36:34 +00:00
|
|
|
|
2022-09-09 07:49:39 +00:00
|
|
|
result = childProcess.spawnSync("git", [ "fetch", name, branch ]);
|
|
|
|
|
|
|
|
console.log(result.stdout.toString());
|
|
|
|
console.error(result.stderr.toString());
|
|
|
|
|
|
|
|
result = childProcess.spawnSync("git", [ "checkout", branch, "--force" ]);
|
2022-09-08 14:36:34 +00:00
|
|
|
|
2022-09-08 14:40:45 +00:00
|
|
|
console.log(result.stdout.toString());
|
|
|
|
console.error(result.stderr.toString());
|