We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46ced25 commit c9382ddCopy full SHA for c9382dd
1 file changed
quarkus-prettytime.tf
@@ -44,3 +44,11 @@ resource "github_team_membership" "quarkus_prettytime" {
44
username = each.value
45
role = "maintainer"
46
}
47
+
48
+# Enable apps in repository
49
+resource "github_app_installation_repository" "quarkus_prettytime" {
50
+ for_each = { for app in [local.applications.lgtm] : app => app }
51
+ # The installation id of the app (in the organization).
52
+ installation_id = each.value
53
+ repository = github_repository.quarkus_prettytime.name
54
+}
0 commit comments