From 2601e309485030a520e838524e23f095915febac Mon Sep 17 00:00:00 2001 From: subencheng Date: Tue, 10 Feb 2026 11:18:39 -0800 Subject: [PATCH 1/5] test --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f15ba6dc2..ba9d24afa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,6 +22,9 @@ jobs: terraform init -input=false working-directory: dev name: "Initialize Terraform" + - name: Import existing namespace if present + run: terraform import temporalcloud_namespace.test_namespace ${{ vars.TEST_NAMESPACE_NAME }} || true + working-directory: dev - run: | terraform apply -auto-approve -input=false working-directory: dev From 07f525f58e95dee97ccac9325ef0004814dfc020 Mon Sep 17 00:00:00 2001 From: subencheng Date: Tue, 10 Feb 2026 11:22:17 -0800 Subject: [PATCH 2/5] now --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ba9d24afa..f87589b4d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,7 +23,8 @@ jobs: working-directory: dev name: "Initialize Terraform" - name: Import existing namespace if present - run: terraform import temporalcloud_namespace.test_namespace ${{ vars.TEST_NAMESPACE_NAME }} || true + run: | + terraform import temporalcloud_namespace.test_namespace ${{ vars.TEST_NAMESPACE_NAME }} || true working-directory: dev - run: | terraform apply -auto-approve -input=false From ecf4a1be7bdc926f1ff589e2f27347e03d1c9280 Mon Sep 17 00:00:00 2001 From: subencheng Date: Tue, 10 Feb 2026 11:25:45 -0800 Subject: [PATCH 3/5] update --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f87589b4d..fc10cca17 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,7 +24,7 @@ jobs: name: "Initialize Terraform" - name: Import existing namespace if present run: | - terraform import temporalcloud_namespace.test_namespace ${{ vars.TEST_NAMESPACE_NAME }} || true + terraform import temporalcloud_namespace.test_namespace ci-test || true working-directory: dev - run: | terraform apply -auto-approve -input=false From 951571885ef5ce9fdb3902ce8ceb0265b0b7a5f2 Mon Sep 17 00:00:00 2001 From: subencheng Date: Tue, 10 Feb 2026 12:08:55 -0800 Subject: [PATCH 4/5] now --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fc10cca17..74c58f46d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,10 +22,10 @@ jobs: terraform init -input=false working-directory: dev name: "Initialize Terraform" - - name: Import existing namespace if present - run: | - terraform import temporalcloud_namespace.test_namespace ci-test || true - working-directory: dev + - uses: actions/download-artifact@v4 + with: + name: state + path: dev - run: | terraform apply -auto-approve -input=false working-directory: dev From 34ff866a063a4ef415acd8f95db521fb777f1c52 Mon Sep 17 00:00:00 2001 From: subencheng Date: Tue, 10 Feb 2026 12:20:51 -0800 Subject: [PATCH 5/5] delete --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 74c58f46d..482ed8a38 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,10 +22,10 @@ jobs: terraform init -input=false working-directory: dev name: "Initialize Terraform" - - uses: actions/download-artifact@v4 - with: - name: state - path: dev + - name: "Delete test namesapce" + run: | + terraform apply -destroy -auto-approve -input=false + working-directory: dev - run: | terraform apply -auto-approve -input=false working-directory: dev