Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pkg/e2etest/cleanup.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ func CleanupStaleResources(ctx context.Context, client forge.Client, token, org
// Clear per-repo install guard so enroll-all includes test-repo.
deleteRepoVariable(ctx, token, org, TestRepo, forge.PerRepoGuardVar, t)

// Clear leaked repo-level FULLSEND_MINT_URL left by cfmint behaviour
// tests (#6037). Repo variables shadow org-level ones, so a stale
// value pointing at a torn-down CF Worker preview breaks dispatch.
Comment thread
ggallen marked this conversation as resolved.
deleteRepoVariable(ctx, token, org, TestRepo, "FULLSEND_MINT_URL", t)
Comment thread
ggallen marked this conversation as resolved.

// 4. Delete stale enrollment and unenrollment branches from test-repo.
deleteBranch(ctx, token, org, TestRepo, "fullsend/onboard", t)
deleteBranch(ctx, token, org, TestRepo, "fullsend/offboard", t)
Expand Down
Loading