Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Transfer maintenance of quarkus-hibernate-search-extras to Marko Bekhta #305

Merged
merged 2 commits into from
Oct 29, 2024
Merged
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
10 changes: 9 additions & 1 deletion terraform-scripts/quarkus-hibernate-search-extras.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,20 @@ resource "github_team_repository" "quarkus_hibernate_search_extras" {

# Add users to the team
resource "github_team_membership" "quarkus_hibernate_search_extras" {
for_each = { for tm in ["yrodiere"] : tm => tm }
for_each = { for tm in ["marko-bekhta"] : tm => tm }
team_id = github_team.quarkus_hibernate_search_extras.id
username = each.value
role = "maintainer"
}

# Add outside collaborators to the repository
resource "github_repository_collaborator" "quarkus_hibernate_search_extras" {
for_each = { for tm in ["yrodiere"] : tm => tm }
repository = github_repository.quarkus_hibernate_search_extras.name
username = each.value
permission = "push"
}

# Enable apps in repository
resource "github_app_installation_repository" "quarkus_hibernate_search_extras" {
for_each = { for app in [local.applications.lgtm] : app => app }
Expand Down