Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions terraform-scripts/quarkus-jackson-jq.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,11 @@ resource "github_team_membership" "quarkus_jackson_jq" {
username = each.value
role = "maintainer"
}

# Enable apps in repository
resource "github_app_installation_repository" "quarkus_jackson_jq" {
for_each = { for app in [local.applications.renovate] : app => app }
# The installation id of the app (in the organization).
installation_id = each.value
repository = github_repository.quarkus_jackson_jq.name
}
8 changes: 8 additions & 0 deletions terraform-scripts/quarkus-openapi-generator.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ resource "github_repository_collaborator" "quarkus_openapi_generator" {
permission = "admin"
}

# Enable apps in repository
resource "github_app_installation_repository" "quarkus_openapi_generator" {
for_each = { for app in [local.applications.renovate] : app => app }
# The installation id of the app (in the organization).
installation_id = each.value
repository = github_repository.quarkus_openapi_generator.name
}

resource "github_actions_organization_secret_repository" "quarkus_openapi_generator" {
for_each = { for k in [local.secrets.surge_token] : k => k }
secret_name = each.value
Expand Down