Skip to content

Commit

Permalink
Introduce quarkus-fury
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Oct 31, 2024
1 parent a2da8c0 commit 3d75ac7
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ terraform-scripts/quarkus-eddi.tf @quarkiverse/qua
terraform-scripts/quarkus-embedded-postgresql.tf @quarkiverse/quarkiverse-embedded-postgresql
terraform-scripts/quarkus-file-vault.tf @quarkiverse/quarkiverse-file-vault
terraform-scripts/quarkus-freemarker.tf @quarkiverse/quarkiverse-freemarker
terraform-scripts/quarkus-fury.tf @quarkiverse/quarkiverse-fury
terraform-scripts/quarkus-fx.tf @quarkiverse/quarkiverse-fx
terraform-scripts/quarkus-github-api.tf @quarkiverse/quarkiverse-github-api
terraform-scripts/quarkus-github-action.tf @quarkiverse/quarkiverse-github-action
Expand Down
36 changes: 36 additions & 0 deletions terraform-scripts/quarkus-fury.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Create repository
resource "github_repository" "quarkus_fury" {
name = "quarkus-fury"
description = "A blazingly fast multi-language serialization framework powered by JIT and zero-copy."
homepage_url = "https://docs.quarkiverse.io/quarkus-fury/dev"
allow_update_branch = true
archive_on_destroy = true
delete_branch_on_merge = true
has_issues = true
vulnerability_alerts = true
topics = ["quarkus-extension", "fury", "serialization"]
}

# Create team
resource "github_team" "quarkus_fury" {
name = "quarkiverse-fury"
description = "fury team"
create_default_maintainer = false
privacy = "closed"
parent_team_id = data.github_team.quarkiverse_members.id
}

# Add team to repository
resource "github_team_repository" "quarkus_fury" {
team_id = github_team.quarkus_fury.id
repository = github_repository.quarkus_fury.name
permission = "maintain"
}

# Add users to the team
resource "github_team_membership" "quarkus_fury" {
for_each = { for tm in ["chaokunyang", "zhfeng"] : tm => tm }
team_id = github_team.quarkus_fury.id
username = each.value
role = "maintainer"
}

0 comments on commit 3d75ac7

Please sign in to comment.