Skip to content

Commit a138a1d

Browse files
committed
Create arm64 label
1 parent 82e8329 commit a138a1d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

terraform/github/repositories.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ resource "github_repository" "repositories" {
3333
}
3434
}
3535

36+
resource "github_issue_label" "arm64_label" {
37+
for_each = toset(flatten(values(var.repositories)))
38+
repository = each.value
39+
name = "arm64"
40+
color = "0E8A16"
41+
description = "Work related to ARM architecture support"
42+
}
43+
3644
resource "github_issue_label" "automated_label" {
3745
for_each = toset(flatten(values(var.repositories)))
3846
repository = each.value

0 commit comments

Comments
 (0)