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

Update and rename quarkus-statiq.tf to quarkus-roq.tf #242

Merged
merged 3 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ terraform-scripts/quarkus-shedlock.tf @quarkiverse/qua
terraform-scripts/quarkus-smallrye-opentracing.tf @quarkiverse/quarkiverse-smallrye-opentracing
terraform-scripts/quarkus-snappy.tf @quarkiverse/quarkiverse-snappy
terraform-scripts/quarkus-sshd.tf @quarkiverse/quarkiverse-sshd
terraform-scripts/quarkus-statiq.tf @quarkiverse/quarkiverse-statiq
terraform-scripts/quarkus-roq.tf @quarkiverse/quarkiverse-roq
terraform-scripts/quarkus-systemd-notify.tf @quarkiverse/quarkiverse-systemd-notify
terraform-scripts/quarkus-tekton-client.tf @quarkiverse/quarkiverse-tekton-client
terraform-scripts/quarkus-tika.tf @quarkiverse/quarkiverse-tika
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Create repository
resource "github_repository" "quarkus_statiq" {
name = "quarkus-statiq"
name = "quarkus-roq"
description = "An extension to generate/publish static pages from your Quarkus web-app"
allow_update_branch = true
archive_on_destroy = true
delete_branch_on_merge = true
has_issues = true
has_projects = true
vulnerability_alerts = true
topics = ["quarkus-extension", "web", "static", "generate", "blog"]
topics = ["quarkus-extension", "web", "static", "ssg", "site", "generator", "generate", "blog"]
}

# Create team
resource "github_team" "quarkus_statiq" {
name = "quarkiverse-statiq"
description = "statiq team"
name = "quarkiverse-roq"
description = "roq team"
create_default_maintainer = false
privacy = "closed"
parent_team_id = data.github_team.quarkiverse_members.id
Expand All @@ -29,7 +29,7 @@ resource "github_team_repository" "quarkus_statiq" {

# Add users to the team
resource "github_team_membership" "quarkus_statiq" {
for_each = { for tm in ["ia3andy"] : tm => tm }
for_each = { for tm in ["ia3andy", "melloware", "mcruzdev"] : tm => tm }
team_id = github_team.quarkus_statiq.id
username = each.value
role = "maintainer"
Expand Down
Loading