From 72fdec171190b4e31468183a631d1ab671362fab Mon Sep 17 00:00:00 2001 From: Umang Mistry Date: Mon, 12 Feb 2024 12:24:23 -0600 Subject: [PATCH] Removed manual trigger --- bitbucket-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index ccbdbff..a6c817b 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -6,8 +6,8 @@ definitions: script: - terraform --version # terraform steps here - # trigger: automatic # uncomment after testing - trigger: manual + trigger: automatic # uncomment after testing + # trigger: manual - step: &snowflake_deploy name: "Deploy Snowflake Changes" image: python:3.7 @@ -21,8 +21,8 @@ definitions: - if [ "$BITBUCKET_BRANCH" == "UAT" ]; then export SNOWFLAKE_DATABASE=$UAT_SNOWFLAKE_DATABASE; fi - if [ "$BITBUCKET_BRANCH" == "PROD" ]; then export SNOWFLAKE_DATABASE=$PROD_SNOWFLAKE_DATABASE; fi - schemachange -a $SNOWFLAKE_ACCOUNT -u $SNOWFLAKE_USER -r $SNOWFLAKE_ROLE -w $SNOWFLAKE_WAREHOUSE -d $SNOWFLAKE_DATABASE -c $SNOWFLAKE_DATABASE.SCHEMACHANGE.CHANGE_HISTORY --create-change-history-table -v - # trigger: automatic # uncomment after testing - trigger: manual + trigger: automatic # uncomment after testing + # trigger: manual caches: - pip