From 1b4126432037db4676ed628b48911a9a014e08be Mon Sep 17 00:00:00 2001 From: Antony Bishop <36888942+AntonyBishop@users.noreply.github.com> Date: Mon, 29 Apr 2024 13:49:29 +0100 Subject: [PATCH] Add Collaborators to shinyGovstyle --- terraform/shinyGovstyle.tf | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 terraform/shinyGovstyle.tf diff --git a/terraform/shinyGovstyle.tf b/terraform/shinyGovstyle.tf new file mode 100644 index 0000000..dc2c1c4 --- /dev/null +++ b/terraform/shinyGovstyle.tf @@ -0,0 +1,26 @@ +module "shinyGovstyle" { + source = "./modules/repository-collaborators" + repository = "shinyGovstyle" + collaborators = [ + { + github_user = "sarahmwong" + permission = "maintain" + name = "Sarah Wong" + email = "sarah.wong@hmrc.gov.uk" + org = "HMRC" + reason = "A x-gov open sourced package that needs some help maintaining the repo from the working group" + added_by = "ross.wyatt@justice.gov.uk" + review_after = "2024-10-29" + }, + { + github_user = "cjrace" + permission = "maintain" + name = "Cameron Race" + email = "Cameron.RACE@education.gov.uk" + org = "DfE" + reason = "A x-gov open sourced package that needs some help maintaining the repo from the working group" + added_by = "ross.wyatt@justice.gov.uk" + review_after = "2024-10-29" + }, + ] +}