terraform: add infra repo and ruleset
This commit is contained in:
parent
fc2856a541
commit
3476dc9c76
3 changed files with 84 additions and 0 deletions
75
terraform/github-repo-infra.tf
Normal file
75
terraform/github-repo-infra.tf
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
resource "github_repository" "infra" {
|
||||||
|
name = "infra"
|
||||||
|
description = "nix-community infrastructure [maintainer=@zowoq]"
|
||||||
|
homepage_url = "https://nix-community.org"
|
||||||
|
|
||||||
|
topics = [
|
||||||
|
"nix-community-buildbot",
|
||||||
|
"nix-darwin",
|
||||||
|
"nixos",
|
||||||
|
"terraform",
|
||||||
|
]
|
||||||
|
|
||||||
|
allow_auto_merge = true
|
||||||
|
allow_merge_commit = false
|
||||||
|
allow_rebase_merge = true
|
||||||
|
allow_squash_merge = false
|
||||||
|
delete_branch_on_merge = true
|
||||||
|
has_discussions = true
|
||||||
|
has_issues = true
|
||||||
|
vulnerability_alerts = true
|
||||||
|
|
||||||
|
|
||||||
|
pages {
|
||||||
|
build_type = "workflow"
|
||||||
|
cname = "nix-community.org"
|
||||||
|
|
||||||
|
source {
|
||||||
|
branch = "master"
|
||||||
|
path = "/"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "github_repository_ruleset" "infra" {
|
||||||
|
name = "default branch"
|
||||||
|
repository = github_repository.infra.name
|
||||||
|
target = "branch"
|
||||||
|
enforcement = "active"
|
||||||
|
|
||||||
|
conditions {
|
||||||
|
ref_name {
|
||||||
|
include = ["~DEFAULT_BRANCH"]
|
||||||
|
exclude = []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rules {
|
||||||
|
deletion = true
|
||||||
|
non_fast_forward = true
|
||||||
|
|
||||||
|
merge_queue {
|
||||||
|
check_response_timeout_minutes = 60
|
||||||
|
grouping_strategy = "ALLGREEN"
|
||||||
|
max_entries_to_build = 1
|
||||||
|
max_entries_to_merge = 1
|
||||||
|
merge_method = "REBASE"
|
||||||
|
min_entries_to_merge = 1
|
||||||
|
min_entries_to_merge_wait_minutes = 5
|
||||||
|
}
|
||||||
|
|
||||||
|
pull_request {
|
||||||
|
dismiss_stale_reviews_on_push = false
|
||||||
|
require_code_owner_review = false
|
||||||
|
require_last_push_approval = false
|
||||||
|
required_approving_review_count = 0
|
||||||
|
required_review_thread_resolution = false
|
||||||
|
}
|
||||||
|
|
||||||
|
required_status_checks {
|
||||||
|
required_check {
|
||||||
|
context = "buildbot/nix-build"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -7,6 +7,7 @@
|
||||||
packages = [
|
packages = [
|
||||||
(terraform.withPlugins (p: [
|
(terraform.withPlugins (p: [
|
||||||
p.cloudflare
|
p.cloudflare
|
||||||
|
p.github
|
||||||
p.hydra
|
p.hydra
|
||||||
p.sops
|
p.sops
|
||||||
p.tfe
|
p.tfe
|
||||||
|
|
|
@ -3,6 +3,9 @@ terraform {
|
||||||
cloudflare = {
|
cloudflare = {
|
||||||
source = "cloudflare/cloudflare"
|
source = "cloudflare/cloudflare"
|
||||||
}
|
}
|
||||||
|
github = {
|
||||||
|
source = "integrations/github"
|
||||||
|
}
|
||||||
hydra = {
|
hydra = {
|
||||||
source = "DeterminateSystems/hydra"
|
source = "DeterminateSystems/hydra"
|
||||||
}
|
}
|
||||||
|
@ -23,6 +26,11 @@ provider "cloudflare" {
|
||||||
api_token = data.sops_file.nix-community.data["CLOUDFLARE_API_TOKEN"]
|
api_token = data.sops_file.nix-community.data["CLOUDFLARE_API_TOKEN"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
provider "github" {
|
||||||
|
# admin provides their own token
|
||||||
|
owner = "nix-community"
|
||||||
|
}
|
||||||
|
|
||||||
provider "hydra" {
|
provider "hydra" {
|
||||||
host = "https://hydra.nix-community.org"
|
host = "https://hydra.nix-community.org"
|
||||||
password = data.sops_file.nix-community.data["HYDRA_PASSWORD"]
|
password = data.sops_file.nix-community.data["HYDRA_PASSWORD"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue