Compare commits

..

No commits in common. "3679dbe8b8d5194e1cd155d14dd4df9ea077114d" and "c8eb43518796e91f3e1293d9209a557e03189977" have entirely different histories.

4 changed files with 4 additions and 6 deletions

View file

@ -4,5 +4,4 @@ package-lock.json
Dockerfile
docker-compose.yml
data.json
.gitignore
dist/
.gitignore

3
.gitignore vendored
View file

@ -1,3 +1,2 @@
node_modules/
package-lock.json
dist/
package-lock.json

View file

@ -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);
await git.push("fumo");
git.push("fumo");
}
export async function getCommitAuthors(out: string = __dirname): Promise<string[]> {

View file

@ -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.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) {
console.log("[VAL] Invalid webhook origin!");
return;