diff options
author | Franck Cuny <franck@fcuny.net> | 2022-10-08 10:15:46 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-10-08 10:15:46 -0700 |
commit | 347a1e19231b83c3ae8ace1fd32a05d2f8f54905 (patch) | |
tree | d8add10ee8a9040ea4c403fd3665b3dc8209a506 /ops/github | |
parent | ci: add GitHub action to update flakes and dependabot (diff) | |
download | world-347a1e19231b83c3ae8ace1fd32a05d2f8f54905.tar.gz |
ref(tools/govanity): moved back to its own repository
It's back at https://github.com/fcuny/govanity
Diffstat (limited to 'ops/github')
-rw-r--r-- | ops/github/repositories_private.tf | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ops/github/repositories_private.tf b/ops/github/repositories_private.tf index 721eff1..1dbc3a4 100644 --- a/ops/github/repositories_private.tf +++ b/ops/github/repositories_private.tf @@ -258,3 +258,17 @@ resource "github_repository" "notes-fcuny-net" { allow_rebase_merge = true vulnerability_alerts = true } + +resource "github_repository" "govanity" { + name = "govanity" + visibility = "private" + delete_branch_on_merge = true + has_downloads = false + has_issues = true + has_projects = false + has_wiki = false + allow_merge_commit = false + allow_squash_merge = true + allow_rebase_merge = true + vulnerability_alerts = true +} |