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 d2e4a51 commit 5fc33a6Copy full SHA for 5fc33a6
terraform/github/repositories.tf
@@ -41,6 +41,14 @@ resource "github_issue_label" "stackhpc_ci_label" {
41
description = "Automated action performed by stackhpc-ci"
42
}
43
44
+resource "github_issue_label" "automated_label" {
45
+ for_each = toset(flatten(values(var.repositories)))
46
+ repository = each.value
47
+ name = "automated"
48
+ color = "C4F2A5"
49
+ description = "Automated action performed by GitHub Actions"
50
+}
51
+
52
resource "github_issue_label" "workflows_label" {
53
for_each = toset(flatten(values(var.repositories)))
54
repository = each.value
0 commit comments