From cb4a4c06850cb444bb1299df7424505a216df484 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Fri, 26 Jul 2024 12:36:12 -0400 Subject: [PATCH] test: add user as member to repo --- terraform/production/org.tfvars | 9 +++++---- terraform/production/repositories.tfvars | 11 ++++++----- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/terraform/production/org.tfvars b/terraform/production/org.tfvars index 3812e19..a8b40ff 100644 --- a/terraform/production/org.tfvars +++ b/terraform/production/org.tfvars @@ -41,6 +41,7 @@ organization_teams = { permission = "push" repositories = [ + "django-commons-playground", ] } } @@ -48,8 +49,8 @@ organization_teams = { ################ GitHub Organization Secrets, not used at the moment ############# organization_secrets = { -# "GPG_PASSPHRASE" = { -# description = "GPG Passphrase used to encrypt plan.out files" -# visibility = "all" -# } + # "GPG_PASSPHRASE" = { + # description = "GPG Passphrase used to encrypt plan.out files" + # visibility = "all" + # } } \ No newline at end of file diff --git a/terraform/production/repositories.tfvars b/terraform/production/repositories.tfvars index 0df88d7..6b01e4c 100644 --- a/terraform/production/repositories.tfvars +++ b/terraform/production/repositories.tfvars @@ -3,7 +3,7 @@ repositories = { # Keep the following repositories in alphabetical order ".github" = { - description = "A Special Repository." + description = "A Special Repository." enable_branch_protection = false topics = [] @@ -12,18 +12,18 @@ repositories = { } "controls" = { - description = "The controls for managing Django Commons projects" + description = "The controls for managing Django Commons projects" enable_branch_protection = false topics = [] push_allowances = [] - visibility = "public" + visibility = "public" skip_team_creation = true } "membership" = { - description = "Membership repository for the django-commons organization." - visibility = "public" + description = "Membership repository for the django-commons organization." + visibility = "public" topics = [] push_allowances = [] skip_team_creation = true @@ -46,6 +46,7 @@ repositories = { ] # People with GitHub triage repo permissions members = [ + "danielm-cfa", ] } }