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

Introduce quarkus-pact #95

Merged
merged 1 commit into from
Oct 18, 2022
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
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ quarkus-opencv.tf @quarkiverse/quarkiverse-opencv
quarkus-openfga-client.tf @quarkiverse/quarkiverse-openfga-client
quarkus-opentelemetry-exporter.tf @quarkiverse/quarkiverse-opentelemetry-exporter
quarkus-operator-sdk.tf @quarkiverse/quarkiverse-operator-sdk
quarkus-pact.tf @quarkiverse/quarkiverse-pact
quarkus-pinot.tf @quarkiverse/quarkiverse-pinot
quarkus-pooled-jms.tf @quarkiverse/quarkiverse-pooled-jms
quarkus-prettytime.tf @quarkiverse/quarkiverse-prettytime
Expand Down
35 changes: 35 additions & 0 deletions quarkus-pact.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Create repository
resource "github_repository" "quarkus_pact" {
name = "quarkus-pact"
description = "Pact is a widely-recommended framework for consumer-driven contract testing."
homepage_url = "https://pact.io/"
archive_on_destroy = true
delete_branch_on_merge = true
has_issues = true
vulnerability_alerts = true
topics = ["quarkus-extension", "pact", "consumer-driven-contract-testing"]
}

# Create team
resource "github_team" "quarkus_pact" {
name = "quarkiverse-pact"
description = "Quarkiverse Pact 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_pact" {
team_id = github_team.quarkus_pact.id
repository = github_repository.quarkus_pact.name
permission = "maintain"
}

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