Skip to content

Commit 5fc33a6

Browse files
Add automation label
1 parent d2e4a51 commit 5fc33a6

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
@@ -41,6 +41,14 @@ resource "github_issue_label" "stackhpc_ci_label" {
4141
description = "Automated action performed by stackhpc-ci"
4242
}
4343

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+
4452
resource "github_issue_label" "workflows_label" {
4553
for_each = toset(flatten(values(var.repositories)))
4654
repository = each.value

0 commit comments

Comments
 (0)