We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82e8329 commit a138a1dCopy full SHA for a138a1d
terraform/github/repositories.tf
@@ -33,6 +33,14 @@ resource "github_repository" "repositories" {
33
}
34
35
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
+
44
resource "github_issue_label" "automated_label" {
45
for_each = toset(flatten(values(var.repositories)))
46
repository = each.value
0 commit comments