File tree 2 files changed +6
-6
lines changed
ansible/roles/source-repo-sync/tasks
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 72
72
- name : Ensure required labels exists on remote # noqa no-handler
73
73
ansible.builtin.include_tasks : " tasks/add_label.yml"
74
74
with_items :
75
- - stackhpc-ci
75
+ - automated
76
76
- community-files
77
77
loop_control :
78
78
loop_var : label_name
79
79
when : community_copy.changed | bool
80
80
81
81
- name : Open pull request # noqa command-instead-of-shell no-handler
82
82
ansible.builtin.shell :
83
- cmd : ' gh pr create -f -B {{ community_manifest.prefix | default("") }}{{ community_manifest.branch }} -l stackhpc-ci --label community-files'
83
+ cmd : ' gh pr create -f -B {{ community_manifest.prefix | default("") }}{{ community_manifest.branch }} -l automated --label community-files'
84
84
chdir : " {{ staging_path }}/{{ repository_manifest.name }}"
85
85
when : community_copy.changed | bool
86
86
Original file line number Diff line number Diff line change @@ -33,12 +33,12 @@ resource "github_repository" "repositories" {
33
33
}
34
34
}
35
35
36
- resource "github_issue_label" "stackhpc_ci_label " {
36
+ resource "github_issue_label" "automated_label " {
37
37
for_each = toset (flatten (values (var. repositories )))
38
38
repository = each. value
39
- name = " stackhpc-ci "
40
- color = " E6E2C0 "
41
- description = " Automated action performed by stackhpc-ci "
39
+ name = " automated "
40
+ color = " C4F2A5 "
41
+ description = " Automated action performed by GitHub Actions "
42
42
}
43
43
44
44
resource "github_issue_label" "workflows_label" {
You can’t perform that action at this time.
0 commit comments