Compare commits
3 commits
c8eb435187
...
3679dbe8b8
Author | SHA1 | Date | |
---|---|---|---|
|
3679dbe8b8 | ||
|
80e27f4f42 | ||
|
f4e49393ba |
|
@ -5,3 +5,4 @@ Dockerfile
|
||||||
docker-compose.yml
|
docker-compose.yml
|
||||||
data.json
|
data.json
|
||||||
.gitignore
|
.gitignore
|
||||||
|
dist/
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
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);
|
||||||
git.push("fumo");
|
await 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.clone_url || webhookData.repository.ssh_url || webhookData.repository.html_url;
|
const url: any = webhookData.repository.ssh_url || webhookData.repository.clone_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