File tree Expand file tree Collapse file tree
roles/source-repo-sync/tasks Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -325,6 +325,10 @@ source_repositories:
325325 - "2023.1"
326326 - zed
327327 - yoga
328+ workflows:
329+ per_release_ignored_workflows:
330+ "2026.1":
331+ - tox
328332 community_files:
329333 - codeowners:
330334 content: "{{ community_files.codeowners.openstack }}"
Original file line number Diff line number Diff line change 3434 workflow_manifest :
3535 branch : " {{ branch_name }}"
3636 prefix : " stackhpc/"
37- workflows : " {{ repository_manifest.workflows.elsewhere }}"
37+ workflows : >-
38+ {{ repository_manifest.workflows.elsewhere
39+ | difference(repository_manifest.workflows.per_release_ignored_workflows[branch_name | string] | default([])) }}
3840 workflow_args : " {{ repository_manifest.workflow_args }}"
3941 when : repository_manifest.copy_workflows and repository_manifest.releases is defined
4042 with_items : " {{ repository_manifest.releases }}"
Original file line number Diff line number Diff line change 2222 union(item.value.workflows.additional_workflows.default_branch_only | default([])) }}"
2323 elsewhere : " {{ openstack_workflows.elsewhere | difference(item.value.workflows.ignored_workflows.elsewhere | default([])) | union(item.value.workflows.additional_workflows.elsewhere
2424 | default([])) }}"
25+ per_release_ignored_workflows : " {{ item.value.workflows.per_release_ignored_workflows | default({}, true) }}"
2526 workflow_args : " {{ item.value.workflow_args | default({}) }}"
2627 copy_workflows : " {{ item.value.copy_workflows | default(true) }}"
2728 community_files : " {{ item.value.community_files | default({}) }}"
Original file line number Diff line number Diff line change 341341 "neutron" : {
342342 "default" : []
343343 },
344+ "nova" : {
345+ "default" : [
346+ " tox / Tox pep8 with Python 3.12" ,
347+ " tox / Tox py3 with Python 3.12"
348+ ],
349+ "stackhpc/2026.1" : []
350+ },
344351 "octavia-dashboard" : {
345352 "default" : []
346353 },
You can’t perform that action at this time.
0 commit comments