diff --git a/ansible/roles/source-repo-sync/tasks/add_community_files.yml b/ansible/roles/source-repo-sync/tasks/add_community_files.yml index 00993721..798ec80f 100644 --- a/ansible/roles/source-repo-sync/tasks/add_community_files.yml +++ b/ansible/roles/source-repo-sync/tasks/add_community_files.yml @@ -72,7 +72,7 @@ - name: Ensure required labels exists on remote # noqa no-handler ansible.builtin.include_tasks: "tasks/add_label.yml" with_items: - - stackhpc-ci + - automated - community-files loop_control: loop_var: label_name @@ -80,7 +80,7 @@ - name: Open pull request # noqa command-instead-of-shell no-handler ansible.builtin.shell: - cmd: 'gh pr create -f -B {{ community_manifest.prefix | default("") }}{{ community_manifest.branch }} -l stackhpc-ci --label community-files' + cmd: 'gh pr create -f -B {{ community_manifest.prefix | default("") }}{{ community_manifest.branch }} -l automated --label community-files' chdir: "{{ staging_path }}/{{ repository_manifest.name }}" when: community_copy.changed | bool diff --git a/terraform/github/repositories.tf b/terraform/github/repositories.tf index 662b8999..9be0d23e 100644 --- a/terraform/github/repositories.tf +++ b/terraform/github/repositories.tf @@ -33,12 +33,12 @@ resource "github_repository" "repositories" { } } -resource "github_issue_label" "stackhpc_ci_label" { +resource "github_issue_label" "automated_label" { for_each = toset(flatten(values(var.repositories))) repository = each.value - name = "stackhpc-ci" - color = "E6E2C0" - description = "Automated action performed by stackhpc-ci" + name = "automated" + color = "C4F2A5" + description = "Automated action performed by GitHub Actions" } resource "github_issue_label" "workflows_label" {