-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixes quarkusio/quarkus#27729
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |