Skip to content

Commit 652825d

Browse files
committed
add string escape to fix steps
1 parent cc43ad9 commit 652825d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

template/{% if HasWorkflows %}.github{% endif %}/workflows/{% if HasWorkflows %}next_steps.yml{% endif %}.jinja

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
id: citation
2020
- name: List created issues
2121
run: |
22-
echo 'Created issues that must be completed to have fully working Python package:
23-
* Citation data ${{ steps.citation.outputs.url }}'
22+
echo "Created issues that must be completed to have fully working Python package:
23+
* Citation data {{ '${{' }} steps.citation.outputs.url {{ '}}' }}"
2424
- name: Cleanup files needed to create next steps issues
2525
run: |
2626
git config --global user.name 'NLeSC Python template'
@@ -42,8 +42,8 @@ jobs:
4242
id: linting
4343
- name: List created issues
4444
run: |
45-
echo 'Created issues that must be completed to have fully working Python package:
46-
* Linting fixes ${{ steps.linting.outputs.url }}'
45+
echo "Created issues that must be completed to have fully working Python package:
46+
* Linting fixes {{ '${{' }} steps.linting.outputs.url {{ '}}' }}"
4747
- name: Cleanup files needed to create next steps issues
4848
run: |
4949
git config --global user.name 'NLeSC Python template'
@@ -65,8 +65,8 @@ jobs:
6565
id: readthedocs
6666
- name: List created issues
6767
run: |
68-
echo 'Created issues that must be completed to have fully working Python package:
69-
* Read the Docs instructions ${{ steps.readthedocs.outputs.url }}'
68+
echo "Created issues that must be completed to have fully working Python package:
69+
* Read the Docs instructions {{ '${{' }} steps.readthedocs.outputs.url {{ '}}' }}"
7070
- name: Cleanup files needed to create next steps issues
7171
run: |
7272
git config --global user.name 'NLeSC Python template'
@@ -88,8 +88,8 @@ jobs:
8888
id: zenodo
8989
- name: List created issues
9090
run: |
91-
echo 'Created issues that must be completed to have fully working Python package:
92-
* Sonarcloud integration ${{ steps.sonarcloud.outputs.url }}'
91+
echo "Created issues that must be completed to have fully working Python package:
92+
* Sonarcloud integration {{ '${{' }} steps.sonarcloud.outputs.url {{ '}}' }}"
9393
- name: Cleanup files needed to create next steps issues
9494
run: |
9595
git config --global user.name 'NLeSC Python template'
@@ -111,8 +111,8 @@ jobs:
111111
id: sonarcloud
112112
- name: List created issues
113113
run: |
114-
echo 'Created issues that must be completed to have fully working Python package:
115-
* Sonarcloud integration ${{ steps.sonarcloud.outputs.url }}'
114+
echo "Created issues that must be completed to have fully working Python package:
115+
* Sonarcloud integration {{ '${{' }} steps.sonarcloud.outputs.url {{ '}}' }}"
116116
- name: Cleanup files needed to create next steps issues
117117
run: |
118118
git config --global user.name 'NLeSC Python template'

0 commit comments

Comments
 (0)