From 99fa5aa790a904877d22c334ccee450fb91de230 Mon Sep 17 00:00:00 2001 From: sid palas Date: Thu, 27 May 2021 17:15:44 -0700 Subject: [PATCH] revert test filter --- .github/workflows/terraform.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index ff97622..db89024 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - feature/test-filters tags: - v\d+\.\d+\.\d+$ pull_request: @@ -81,7 +80,7 @@ jobs: id: check-tag run: | if [[ ${{ github.ref }} =~ "^refs\/tags\/v[0-9]+\.[0-9]+\.[0-9]+$" ]]; then echo ::set-output name=environment::production - elif [[ ${{ github.ref }} == 'refs/heads/feature/test-filters' ]]; then echo ::set-output name=environment::staging + elif [[ ${{ github.ref }} == 'refs/heads/main' ]]; then echo ::set-output name=environment::staging else echo ::set-output name=environment::unknown fi