Skip to content

Commit 415f38c

Browse files
committed
terraform/github: Set hacktoberfest topics
1 parent f1b9d0b commit 415f38c

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

terraform/github/github.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ locals {
2424
teams = [
2525
"pkg-committers",
2626
]
27+
topics = [
28+
"hacktoberfest",
29+
]
2730
}
2831

2932
void-mklive = {
@@ -45,6 +48,9 @@ locals {
4548
"doc-writers",
4649
"pkg-committers",
4750
]
51+
topics = [
52+
"hacktoberfest",
53+
]
4854
}
4955

5056
void-wiki = {
@@ -218,6 +224,7 @@ resource "github_repository" "repositories" {
218224
allow_merge_commit = lookup(each.value, "allow_merge_commit", null)
219225
allow_squash_merge = lookup(each.value, "allow_squash_merge", null)
220226
archived = lookup(each.value, "archived", null)
227+
topics = flatten([["voidlinux"], lookup(each.value, "topics", [])])
221228

222229
vulnerability_alerts = true
223230
}
@@ -241,6 +248,11 @@ resource "github_repository" "void_linux_github_io" {
241248
has_issues = true
242249
vulnerability_alerts = true
243250

251+
topics = [
252+
"voidlinux",
253+
"hacktoberfest",
254+
]
255+
244256
pages {
245257
cname = "voidlinux.org"
246258

0 commit comments

Comments
 (0)