Skip to content

Commit

Permalink
Merge pull request #282 from stackhpc/fix-ignore-releases
Browse files Browse the repository at this point in the history
Convert numeric releases to strings
  • Loading branch information
markgoddard authored Feb 2, 2024
2 parents 399395e + 2bb4d73 commit f5ae43f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/roles/source-repo-sync/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
{
name: '{{ item.key }}',
releases:
'{{ default_releases | difference(item.value.ignored_releases | default([])) |
union(item.value.additional_releases | default([])) | sort }}',
'{{ default_releases | map("string") | difference(item.value.ignored_releases | default([]) | map("string")) |
union(item.value.additional_releases | default([]) | map("string")) | sort }}',
workflows:
{ default_branch_only: '{{ openstack_workflows.default_branch_only |
difference(item.value.workflows.ignored_workflows.default_branch_only | default([])) |
Expand Down

0 comments on commit f5ae43f

Please sign in to comment.