From 24efd74f3cebfca08b365230595b3e3745dce5d2 Mon Sep 17 00:00:00 2001 From: ybasinnn Date: Fri, 20 Feb 2026 03:14:30 +0200 Subject: [PATCH] fix: removed non-working pipeline --- .github/workflows/terraform-destroy.yml | 44 ------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/terraform-destroy.yml diff --git a/.github/workflows/terraform-destroy.yml b/.github/workflows/terraform-destroy.yml deleted file mode 100644 index 17f1ac1..0000000 --- a/.github/workflows/terraform-destroy.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: 'Terraform Destroy' - -on: - workflow_dispatch: - -env: - TF_CLOUD_ORGANIZATION: "YordanOrg" - TF_API_TOKEN: "${{ secrets.TF_API_TOKEN }}" - TF_WORKSPACE: "website_check_serverless" - CONFIG_DIRECTORY: "./" - -jobs: - terraform-destroy: - name: "Terraform Destroy" - runs-on: ubuntu-latest - permissions: - contents: read - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Upload Configuration - uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.0.0 - id: destroy-upload - with: - workspace: ${{ env.TF_WORKSPACE }} - directory: ${{ env.CONFIG_DIRECTORY }} - - - name: Create Destroy Run - uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.0 - id: destroy-run - with: - workspace: ${{ env.TF_WORKSPACE }} - configuration_version: ${{ steps.destroy-upload.outputs.configuration_version_id }} - is_destroy: true - - - name: Apply Destroy - uses: hashicorp/tfc-workflows-github/actions/apply-run@v1.0.0 - if: fromJSON(steps.destroy-run.outputs.payload).data.attributes.actions.IsConfirmable - id: destroy-apply - with: - run: ${{ steps.destroy-run.outputs.run_id }} - comment: "Manual Destroy Run from GitHub Actions" \ No newline at end of file