Skip to content

Commit

Permalink
Transfer maintenance of quarkus-hibernate-search-extras to Marko Bekh…
Browse files Browse the repository at this point in the history
…ta (#305)

* Transfer maintenance of quarkus-hibernate-search-extras to Marko Bekhta

@marko-bekhta took over the lead of Hibernate Search: https://github.com/hibernate/hibernate-search/graphs/contributors?from=28%2F10%2F2023
And frequently contributes to Quarkus core as well: https://github.com/quarkusio/quarkus/pulls?q=is%3Apr+author%3Amarko-bekhta

* Apply suggestions from code review

---------

Co-authored-by: George Gastaldi <[email protected]>
  • Loading branch information
yrodiere and gastaldi authored Oct 29, 2024
1 parent b99d8f6 commit fee86c0
Showing 1 changed file with 9 additions and 1 deletion.
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

0 comments on commit fee86c0

Please sign in to comment.