Compare commits
3 commits
c8eb435187
...
3679dbe8b8
Author | SHA1 | Date | |
---|---|---|---|
|
3679dbe8b8 | ||
|
80e27f4f42 | ||
|
f4e49393ba |
|
@ -4,4 +4,5 @@ package-lock.json
|
|||
Dockerfile
|
||||
docker-compose.yml
|
||||
data.json
|
||||
.gitignore
|
||||
.gitignore
|
||||
dist/
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
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> {
|
||||
const git = Git(out);
|
||||
git.addRemote("fumo", repo);
|
||||
git.push("fumo");
|
||||
await git.push("fumo");
|
||||
}
|
||||
|
||||
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);
|
||||
if (forward == null) 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) {
|
||||
console.log("[VAL] Invalid webhook origin!");
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue