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:36:34 -07:00
|
|
|
let result = childProcess.spawnSync("git", [ "remote", "add", name, `https://github.com/${name}/uptime-kuma` ]);
|
|
|
|
|
2022-09-08 07:40:45 -07:00
|
|
|
console.log(result.stdout.toString());
|
|
|
|
console.error(result.stderr.toString());
|
2022-09-08 07:36:34 -07:00
|
|
|
|
2022-09-08 10:57:42 -07:00
|
|
|
result = childProcess.spawnSync("git", [ "pull", name, branch ]);
|
2022-09-08 07:36:34 -07:00
|
|
|
|
2022-09-08 07:40:45 -07:00
|
|
|
console.log(result.stdout.toString());
|
|
|
|
console.error(result.stderr.toString());
|