Skip to content

Commit 2797796

Browse files
committed
add raw escape to fix secrets
1 parent 1e9a64e commit 2797796

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Create citation data issue
1414
uses: JasonEtco/create-an-issue@v2
1515
env:
16-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
1717
with:
1818
filename: .github/workflows/next_steps_citation_issue.md
1919
id: citation
@@ -36,7 +36,7 @@ jobs:
3636
- name: Create linting issue
3737
uses: JasonEtco/create-an-issue@v2
3838
env:
39-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
4040
with:
4141
filename: .github/workflows/next_steps_linting_issue.md
4242
id: linting
@@ -59,7 +59,7 @@ jobs:
5959
- name: Create online documentation issue
6060
uses: JasonEtco/create-an-issue@v2
6161
env:
62-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62+
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
6363
with:
6464
filename: .github/workflows/next_steps_online_documentation_issue.md
6565
id: readthedocs
@@ -82,7 +82,7 @@ jobs:
8282
- name: Create Zenodo integration issue
8383
uses: JasonEtco/create-an-issue@v2
8484
env:
85-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
85+
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
8686
with:
8787
filename: .github/workflows/next_steps_zenodo_issue.md
8888
id: zenodo
@@ -105,7 +105,7 @@ jobs:
105105
- name: Create Sonarcloud issue
106106
uses: JasonEtco/create-an-issue@v2
107107
env:
108-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
108+
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
109109
with:
110110
filename: .github/workflows/next_steps_sonarcloud_issue.md
111111
id: sonarcloud

0 commit comments

Comments
 (0)