Compare commits

...

3 commits

Author SHA1 Message Date
BradBot_1 3679dbe8b8 prioritse ssh
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-23 19:38:20 +00:00
BradBot_1 80e27f4f42 await push 2023-02-23 19:35:55 +00:00
BradBot_1 f4e49393ba CHORE: ignore build files 2023-02-23 19:15:22 +00:00
4 changed files with 6 additions and 4 deletions

View file

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

3
.gitignore vendored
View file

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

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);
git.push("fumo");
await 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.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;