File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed
ansible/roles/source-repo-sync/tasks Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 7272 - name : Ensure required labels exists on remote # noqa no-handler
7373 ansible.builtin.include_tasks : " tasks/add_label.yml"
7474 with_items :
75- - stackhpc-ci
75+ - automated
7676 - community-files
7777 loop_control :
7878 loop_var : label_name
7979 when : community_copy.changed | bool
8080
8181 - name : Open pull request # noqa command-instead-of-shell no-handler
8282 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'
8484 chdir : " {{ staging_path }}/{{ repository_manifest.name }}"
8585 when : community_copy.changed | bool
8686
Original file line number Diff line number Diff line change @@ -33,14 +33,6 @@ resource "github_repository" "repositories" {
3333 }
3434}
3535
36- resource "github_issue_label" "stackhpc_ci_label" {
37- for_each = toset (flatten (values (var. repositories )))
38- repository = each. value
39- name = " stackhpc-ci"
40- color = " E6E2C0"
41- description = " Automated action performed by stackhpc-ci"
42- }
43-
4436resource "github_issue_label" "automated_label" {
4537 for_each = toset (flatten (values (var. repositories )))
4638 repository = each. value
You can’t perform that action at this time.
0 commit comments