Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions tools/cloud-build/provision/pr-ofe-test.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ resource "google_cloudbuild_trigger" "pr_ofe_test" {
description = "OFE test while submitting PR"

filename = "tools/cloud-build/daily-tests/builds/ofe-deployment.yaml"
approval_config {
approval_required = true
}

github {
owner = "GoogleCloudPlatform"
Expand All @@ -32,5 +29,11 @@ resource "google_cloudbuild_trigger" "pr_ofe_test" {
comment_control = "COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY"
}
}

# ONLY trigger when changes happen in this path
included_files = [
"community/front-end/ofe/**"
]

include_build_logs = "INCLUDE_BUILD_LOGS_WITH_STATUS"
}
Loading