Update webhook-handler.ts
Some checks are pending
CI / test (push) Waiting to run

This commit is contained in:
Corey Johnson 2025-11-12 10:03:43 -08:00
parent 726961ca99
commit 1bd8ecba7a

View File

@ -6,7 +6,7 @@ import { assertNever } from "@workshop/shared/utils"
export const handleGiteaWebhook = async (payload: GiteaWebhook) => {
const isDev = process.env.NODE_ENV !== "production"
if (!isDev && payload.repository.name === "🧪") {
if (!isDev && payload.repository.name === "ignore-me") {
return
}