Skip to content

Commit f7ed187

Browse files
committed
increase fallback branch limit to 100M
1 parent bf9c4b4 commit f7ed187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/services/upsertBranch.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export async function checkBranchLimit(
165165
const count = newBranchName
166166
? usedEnvs.filter((env) => env.branchName !== newBranchName).length
167167
: usedEnvs.length;
168-
const limit = await getLimit(organizationId, "branches", 50);
168+
const limit = await getLimit(organizationId, "branches", 100_000_000);
169169

170170
return {
171171
used: count,

0 commit comments

Comments
 (0)