From 652825d0ba0890461fa07bdee20849e48310cba9 Mon Sep 17 00:00:00 2001 From: "Faruk D." Date: Mon, 2 Sep 2024 19:50:28 +0200 Subject: [PATCH] add string escape to fix steps --- ...orkflows %}next_steps.yml{% endif %}.jinja | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/template/{% if HasWorkflows %}.github{% endif %}/workflows/{% if HasWorkflows %}next_steps.yml{% endif %}.jinja b/template/{% if HasWorkflows %}.github{% endif %}/workflows/{% if HasWorkflows %}next_steps.yml{% endif %}.jinja index 626b699..71cd918 100644 --- a/template/{% if HasWorkflows %}.github{% endif %}/workflows/{% if HasWorkflows %}next_steps.yml{% endif %}.jinja +++ b/template/{% if HasWorkflows %}.github{% endif %}/workflows/{% if HasWorkflows %}next_steps.yml{% endif %}.jinja @@ -19,8 +19,8 @@ jobs: id: citation - name: List created issues run: | - echo 'Created issues that must be completed to have fully working Python package: - * Citation data ${{ steps.citation.outputs.url }}' + echo "Created issues that must be completed to have fully working Python package: + * Citation data {{ '${{' }} steps.citation.outputs.url {{ '}}' }}" - name: Cleanup files needed to create next steps issues run: | git config --global user.name 'NLeSC Python template' @@ -42,8 +42,8 @@ jobs: id: linting - name: List created issues run: | - echo 'Created issues that must be completed to have fully working Python package: - * Linting fixes ${{ steps.linting.outputs.url }}' + echo "Created issues that must be completed to have fully working Python package: + * Linting fixes {{ '${{' }} steps.linting.outputs.url {{ '}}' }}" - name: Cleanup files needed to create next steps issues run: | git config --global user.name 'NLeSC Python template' @@ -65,8 +65,8 @@ jobs: id: readthedocs - name: List created issues run: | - echo 'Created issues that must be completed to have fully working Python package: - * Read the Docs instructions ${{ steps.readthedocs.outputs.url }}' + echo "Created issues that must be completed to have fully working Python package: + * Read the Docs instructions {{ '${{' }} steps.readthedocs.outputs.url {{ '}}' }}" - name: Cleanup files needed to create next steps issues run: | git config --global user.name 'NLeSC Python template' @@ -88,8 +88,8 @@ jobs: id: zenodo - name: List created issues run: | - echo 'Created issues that must be completed to have fully working Python package: - * Sonarcloud integration ${{ steps.sonarcloud.outputs.url }}' + echo "Created issues that must be completed to have fully working Python package: + * Sonarcloud integration {{ '${{' }} steps.sonarcloud.outputs.url {{ '}}' }}" - name: Cleanup files needed to create next steps issues run: | git config --global user.name 'NLeSC Python template' @@ -111,8 +111,8 @@ jobs: id: sonarcloud - name: List created issues run: | - echo 'Created issues that must be completed to have fully working Python package: - * Sonarcloud integration ${{ steps.sonarcloud.outputs.url }}' + echo "Created issues that must be completed to have fully working Python package: + * Sonarcloud integration {{ '${{' }} steps.sonarcloud.outputs.url {{ '}}' }}" - name: Cleanup files needed to create next steps issues run: | git config --global user.name 'NLeSC Python template'