From 0324a8c059d20f89c67929a2a0bc32da4bd8459a Mon Sep 17 00:00:00 2001 From: Jamal C <18269441+jamalc@users.noreply.github.com> Date: Fri, 28 Feb 2025 18:24:14 +0000 Subject: [PATCH] update branch from fellows-experimental to develop --- .github/workflows/webapp-and-worker-precommit.yml | 4 ++-- terraform/modules/cloudbuild/main.tf | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/webapp-and-worker-precommit.yml b/.github/workflows/webapp-and-worker-precommit.yml index 1da709b..e580822 100644 --- a/.github/workflows/webapp-and-worker-precommit.yml +++ b/.github/workflows/webapp-and-worker-precommit.yml @@ -1,10 +1,10 @@ -# precommit actions for fellows-experimental branch. +# precommit actions for develop branch. name: test on: push: branches: - - 'fellows-experimental' # TODO: update branch name to dev + - 'develop' # TODO: update branch name to dev jobs: test: diff --git a/terraform/modules/cloudbuild/main.tf b/terraform/modules/cloudbuild/main.tf index f2bd5a8..0d48f80 100644 --- a/terraform/modules/cloudbuild/main.tf +++ b/terraform/modules/cloudbuild/main.tf @@ -71,14 +71,14 @@ resource "google_cloudbuild_trigger" "python_apps" { owner = "datakind" name = "student-success-tool" push { - branch = "fellows-experimental" + branch = "develop" } } } dynamic "source_to_build" { for_each = var.environment != "dev" ? [1] : [] content { - ref = "refs/heads/fellows-experimental" + ref = "refs/heads/develop" repo_type = "GITHUB" uri = "https://github.com/datakind/sst-app-api" } @@ -237,7 +237,7 @@ resource "google_cloudbuild_trigger" "terraform" { description = "Trigger for running Terraform apply" service_account = var.terraform_service_account_id source_to_build { - ref = "refs/heads/fellows-experimental" + ref = "refs/heads/develop" repo_type = "GITHUB" uri = "https://github.com/datakind/sst-app-api" }