diff --git a/prisma/seed.cjs b/prisma/seed.cjs index 61f3928f6..cc5225fa4 100644 --- a/prisma/seed.cjs +++ b/prisma/seed.cjs @@ -50,6 +50,11 @@ async function main() { } }); } + // Update stucked builds + await prisma.build.updateMany({ + where: { status: 'running' }, + data: { status: 'success' } + }); } main() .catch((e) => {