Skip to content

Commit e8c8b26

Browse files
[PRMT-439] - Address TODOs
1 parent 2e6e388 commit e8c8b26

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

scripts/cleanup_sandboxes.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def trigger_delete_workflow(token: str, sandbox: str):
1616
}
1717

1818
inputs = {
19-
"build_branch": "PRMT-439", # TODO: change to main when ready to merge
19+
"build_branch": "main",
2020
"sandbox_workspace": sandbox,
2121
"terraform_vars": "dev.tfvars",
2222
"environment": "development",
@@ -58,8 +58,7 @@ def get_workspaces() -> list[str]:
5858
#Add persisting environments here
5959
excluded = ["ndr-dev"]
6060

61-
# workspaces = get_workspaces()
62-
workspaces = ["delete1", "delete2"] # TODO: To switch to above when ready to merge
61+
workspaces = get_workspaces()
6362
for workspace in workspaces:
6463
if workspace not in excluded:
6564
trigger_delete_workflow(token=gh_pat, sandbox=workspace)

0 commit comments

Comments
 (0)