Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: missing double quote @filetree_create #915

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelogs/fragments/filetree_create_scm_refspec.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
minor_changes:
- filetree_create able to export scm_refspec of project
- filetree_create is missing double quote
2 changes: 1 addition & 1 deletion roles/filetree_create/templates/current_projects.j2
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ controller_projects:
scm_delete_on_update: "{{ current_projects_asset_value.scm_delete_on_update }}"
scm_update_on_launch: "{{ current_projects_asset_value.scm_update_on_launch }}"
scm_update_cache_timeout: "{{ current_projects_asset_value.scm_update_cache_timeout }}"
scm_refspec: "{{ current_projects_asset_value.scm_refspec }}
scm_refspec: "{{ current_projects_asset_value.scm_refspec }}"
{% endif %}
{% if is_aap and current_job_templates_asset_value.summary_fields.default_environment is defined %}
default_environment: "{{ current_job_templates_asset_value.summary_fields.default_environment.name }}"
Expand Down
Loading