Compare commits
No commits in common. "3679dbe8b8d5194e1cd155d14dd4df9ea077114d" and "c8eb43518796e91f3e1293d9209a557e03189977" have entirely different histories.
3679dbe8b8
...
c8eb435187
|
@ -4,5 +4,4 @@ package-lock.json
|
||||||
Dockerfile
|
Dockerfile
|
||||||
docker-compose.yml
|
docker-compose.yml
|
||||||
data.json
|
data.json
|
||||||
.gitignore
|
.gitignore
|
||||||
dist/
|
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
||||||
node_modules/
|
node_modules/
|
||||||
package-lock.json
|
package-lock.json
|
||||||
dist/
|
|
|
@ -32,7 +32,7 @@ export async function cloneRepo(repo: string, out: string = __dirname): Promise<
|
||||||
export async function push(repo: string, out: string = __dirname): Promise<void> {
|
export async function push(repo: string, out: string = __dirname): Promise<void> {
|
||||||
const git = Git(out);
|
const git = Git(out);
|
||||||
git.addRemote("fumo", repo);
|
git.addRemote("fumo", repo);
|
||||||
await git.push("fumo");
|
git.push("fumo");
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getCommitAuthors(out: string = __dirname): Promise<string[]> {
|
export async function getCommitAuthors(out: string = __dirname): Promise<string[]> {
|
||||||
|
|
|
@ -85,7 +85,7 @@ createServer(parseInt(env["PORT"]||"3000"), async (webhookId: string, webhookDat
|
||||||
const forward: Forward|null = getForwardByWebhook(webhookId);
|
const forward: Forward|null = getForwardByWebhook(webhookId);
|
||||||
if (forward == null) return;
|
if (forward == null) return;
|
||||||
if (!webhookData.hasOwnProperty("repository")) return;
|
if (!webhookData.hasOwnProperty("repository")) return;
|
||||||
const url: any = webhookData.repository.ssh_url || webhookData.repository.clone_url || webhookData.repository.html_url;
|
const url: any = webhookData.repository.clone_url || webhookData.repository.ssh_url || webhookData.repository.html_url;
|
||||||
if (typeof url !== "string" || forward.origin !== url) {
|
if (typeof url !== "string" || forward.origin !== url) {
|
||||||
console.log("[VAL] Invalid webhook origin!");
|
console.log("[VAL] Invalid webhook origin!");
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue