We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61d1215 commit c5b62a1Copy full SHA for c5b62a1
1 file changed
tools/cloud-build/provision/pr-tests.tf
@@ -13,13 +13,8 @@
13
# limitations under the License.
14
15
locals {
16
- auto_approved_pr_tests = [
17
- "slurm-gcp-v6-simple-job-completion"
18
- ]
+ auto_approved_pr_tests = []
19
20
- no_auto_trigger_tests = [
21
22
23
}
24
25
@@ -37,7 +32,7 @@ resource "google_cloudbuild_trigger" "pr_test" {
37
32
owner = "GoogleCloudPlatform"
38
33
name = "cluster-toolkit"
39
34
pull_request {
40
- branch = contains(local.no_auto_trigger_tests, each.key) ? "no-auto-trigger" : ".*"
35
+ branch = ".*"
41
36
comment_control = "COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY"
42
43
0 commit comments