Skip to content

Commit

Permalink
update branch from fellows-experimental to develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jamalc committed Feb 28, 2025
1 parent 9682f68 commit 0324a8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/webapp-and-worker-precommit.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
6 changes: 3 additions & 3 deletions terraform/modules/cloudbuild/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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"
}
Expand Down

0 comments on commit 0324a8c

Please sign in to comment.