Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions terraform/github/repositories.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ resource "github_issue_label" "stackhpc_ci_label" {
description = "Automated action performed by stackhpc-ci"
}

resource "github_issue_label" "automated_label" {
for_each = toset(flatten(values(var.repositories)))
repository = each.value
name = "automated"
color = "C4F2A5"
description = "Automated action performed by GitHub Actions"
}

resource "github_issue_label" "workflows_label" {
for_each = toset(flatten(values(var.repositories)))
repository = each.value
Expand Down