Skip to content

Commit

Permalink
transfer django-typer
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Oct 7, 2024
1 parent b71a7e4 commit 82a2564
Showing 1 changed file with 25 additions and 9 deletions.
34 changes: 25 additions & 9 deletions terraform/production/repositories.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ repositories = {
description = "A Special Repository."
enable_branch_protection = false

topics = []
push_allowances = []
topics = []
push_allowances = []
is_django_commons_repo = true
}

Expand All @@ -16,8 +16,8 @@ repositories = {
allow_merge_commit = true
allow_rebase_merge = true
allow_squash_merge = true
topics = []
push_allowances = []
topics = []
push_allowances = []
is_django_commons_repo = true
}

Expand All @@ -27,14 +27,14 @@ repositories = {
allow_merge_commit = true
allow_rebase_merge = true
allow_squash_merge = true
topics = []
push_allowances = []
topics = []
push_allowances = []
is_django_commons_repo = true
}

"django-commons-playground" = {
description = "A sample project to test things out"
topics = []
topics = []
# People with GitHub admin repo permissions
admins = [
"cunla",
Expand All @@ -61,7 +61,7 @@ repositories = {
"cunla",
]
committers = []
members = []
members = []
}

"django-fsm-2" = {
Expand All @@ -78,7 +78,23 @@ repositories = {
"pfouque",
]
committers = []
members = []
members = []
}
"django-typer" = {
description = "Use Typer (type hints) to define the interface for your Django management commands."
homepage_url = "django-typer.rtfd.io"
allow_auto_merge = false
allow_merge_commit = false
allow_rebase_merge = false
allow_squash_merge = true
push_allowances = []

admins = [
"bckohan",
"oliverandrich",
]
committers = []
members = []
}

}

0 comments on commit 82a2564

Please sign in to comment.