uptime-kuma/extra/checkout-pr.js

34 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

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