Skip to content

Commit

Permalink
Merge branch 'master' into apeabody-patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Sep 11, 2023
2 parents 610ad29 + 97bebee commit 7f1bfb5
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion infra/terraform/modules/workflow_files/lint.yaml.tftpl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: 'lint'
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3'
- uses: 'actions/checkout@v4'
- id: variables
run: |
MAKEFILE=$(find . -name Makefile -print -quit)
Expand Down
2 changes: 2 additions & 0 deletions infra/terraform/test-org/ci-triggers/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ locals {
"genai-doc-summarization" = "terraform-genai-doc-summarization"
"secured-notebook" = "notebooks-blueprint-security"
"sdw-onprem-ingest" = "terraform-google-secured-data-warehouse-onprem-ingest"
"pubsub-golang-app" = "terraform-pubsub-integration-golang"
"pubsub-java-app" = "terraform-pubsub-integration-java"
}
# example foundation has custom test modes
example_foundation = { "terraform-example-foundation" = data.terraform_remote_state.org.outputs.ci_repos_folders["example-foundation"] }
Expand Down
8 changes: 4 additions & 4 deletions infra/terraform/test-org/github/resources/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
":rebaseStalePrs"
],
"minimumReleaseAge": "7 days",
"ignorePaths": [],
"ignorePaths": [".github/workflows/lint.yaml", ".github/workflows/stale.yml"],
"labels": ["dependencies"],
"vulnerabilityAlerts": {
"labels": ["type:security"],
Expand All @@ -17,11 +17,11 @@
"packageRules": [
{
"matchFileNames": ["examples/**", "test/**", ".github/**"],
"extends": [":semanticCommitTypeAll(chore)"]
"commitMessagePrefix": "chore(deps):"
},
{
"matchFileNames": ["*", "modules/**"],
"extends": [":semanticCommitTypeAll(fix)"]
"commitMessagePrefix": "fix(deps):"
},
{
"matchFileNames": ["*", "modules/**"],
Expand All @@ -41,7 +41,7 @@
"postUpdateOptions": ["gomodTidy"]
},
{
"matchPackageNames": ["google", "google-beta"],
"matchDepNames": ["google", "google-beta"],
"groupName": "Terraform Google Provider"
}
],
Expand Down
16 changes: 16 additions & 0 deletions infra/terraform/test-org/org/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -752,5 +752,21 @@ locals {
owners = ["anaik91", "imrannayer"]
topics = local.common_topics.db
},
{
name = "terraform-pubsub-integration-golang"
org = "GoogleCloudPlatform"
short_name = "pubsub-golang-app"
owners = ["shabirmean", "Mukamik"]
groups = ["dee-platform-ops", local.jss_common_group]
enable_periodic = true
},
{
name = "terraform-pubsub-integration-java"
org = "GoogleCloudPlatform"
short_name = "pubsub-java-app"
owners = ["shabirmean", "Mukamik"]
groups = ["dee-platform-ops", local.jss_common_group]
enable_periodic = true
},
]
}

0 comments on commit 7f1bfb5

Please sign in to comment.