Skip to content

Commit

Permalink
fix: missing limits workflows (#37)
Browse files Browse the repository at this point in the history
Co-authored-by: Przemyslaw Kalitowski <przemyslaw@kalitowski.com>
  • Loading branch information
przemkalit and Przemyslaw Kalitowski authored Nov 28, 2024
1 parent 95efad1 commit 676e0eb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
bugfixes:
- filetree_create export missing limits settings of workflows
...
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ controller_workflows:
scm_branch: "{{ template_overrides_resources.workflow_job_template[current_workflow_job_templates_asset_value.name].scm_branch
| default(template_overrides_global.workflow_template.scm_branch)
| default(current_workflow_job_templates_asset_value.scm_branch) }}"
limit: "{{ template_overrides_resources.workflow_job_template[current_workflow_job_templates_asset_value.name].limit
| default(template_overrides_global.workflow_job_template.limit)
| default(current_workflow_job_templates_asset_value.limit) }}"
ask_limit_on_launch: {{ template_overrides_resources.workflow_job_template[current_workflow_job_templates_asset_value.name].ask_limit_on_launch
| default(template_overrides_global.workflow_job_template.ask_limit_on_launch)
| default(current_workflow_job_templates_asset_value.ask_limit_on_launch | bool | lower) }}
webhook_service: "{{ template_overrides_resources.workflow_job_template[current_workflow_job_templates_asset_value.name].description
| default(template_overrides_global.workflow_template.webhook_service)
| default(current_workflow_job_templates_asset_value.webhook_service) }}"
Expand Down

0 comments on commit 676e0eb

Please sign in to comment.