summaryrefslogtreecommitdiffstats
path: root/extra/checkout-pr.js
blob: 0328770b1928f049b5b36714caf76c474c834e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const childProcess = require("child_process");

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)");
    process.exit(1);
}

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];

console.log("Checkout pr");

// Checkout the pr
let result = childProcess.spawnSync("git", [ "remote", "add", name, `https://github.com/${name}/uptime-kuma` ]);

console.log(result.stdout.toString());
console.error(result.stderr.toString());

result = childProcess.spawnSync("git", [ "fetch", name, branch ]);

console.log(result.stdout.toString());
console.error(result.stderr.toString());

result = childProcess.spawnSync("git", [ "checkout", `${name}/${branch}`, "--force" ]);

console.log(result.stdout.toString());
console.error(result.stderr.toString());