File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,5 +35,7 @@ locals {
3535 applications = {
3636 # Stale - https://github.com/marketplace/stale
3737 stale = " 20894091"
38+ # LGTM - https://github.com/marketplace/lgtm
39+ lgtm = " 24341616"
3840 }
3941}
Original file line number Diff line number Diff line change @@ -58,4 +58,12 @@ resource "github_branch" "quarkus_cxf" {
5858resource "github_branch_default" "quarkus_cxf" {
5959 repository = github_repository. quarkus_cxf . name
6060 branch = github_branch. quarkus_cxf . branch
61- }
61+ }
62+
63+ # Enable apps in repository
64+ resource "github_app_installation_repository" "quarkus_cxf" {
65+ for_each = { for app in [local . applications . lgtm ] : app => app }
66+ # The installation id of the app (in the organization).
67+ installation_id = each. value
68+ repository = github_repository. quarkus_cxf . name
69+ }
You can’t perform that action at this time.
0 commit comments