Skip to content

Commit

Permalink
Add proper indentation to pre_post_job_template
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
mdellweg authored and lubosmj committed Dec 15, 2023
1 parent 10d0cf6 commit 64cad93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/github/.github/workflows/ci.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ defaults:

jobs:
{%- if pre_job_template %}
{% include pre_job_template.path %}
{% include pre_job_template.path | indent(2) %}
{%- endif %}
{%- if check_commit_message or lint_requirements %}
check-commits:
Expand Down Expand Up @@ -96,5 +96,5 @@ jobs:
echo {{ "'${{toJson(needs)}}'" }} | jq -e 'to_entries|map(select(.value.result!="success"))|length == 0'
echo "CI says: Looks good!"
{%- if post_job_template %}
{% include post_job_template.path %}
{% include post_job_template.path | indent (2) %}
{%- endif %}

0 comments on commit 64cad93

Please sign in to comment.