Skip to content

Commit

Permalink
add string escape to fix secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
fdiblen committed Sep 2, 2024
1 parent 2797796 commit cc43ad9
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Create citation data issue
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
GITHUB_TOKEN: {{ '${{' }}secrets.GITHUB_TOKEN{{ '}}' }}
with:
filename: .github/workflows/next_steps_citation_issue.md
id: citation
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Create linting issue
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
GITHUB_TOKEN: {{ '${{' }}secrets.GITHUB_TOKEN{{ '}}' }}
with:
filename: .github/workflows/next_steps_linting_issue.md
id: linting
Expand All @@ -59,7 +59,7 @@ jobs:
- name: Create online documentation issue
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
GITHUB_TOKEN: {{ '${{' }}secrets.GITHUB_TOKEN{{ '}}' }}
with:
filename: .github/workflows/next_steps_online_documentation_issue.md
id: readthedocs
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Create Zenodo integration issue
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
GITHUB_TOKEN: {{ '${{' }}secrets.GITHUB_TOKEN{{ '}}' }}
with:
filename: .github/workflows/next_steps_zenodo_issue.md
id: zenodo
Expand All @@ -105,7 +105,7 @@ jobs:
- name: Create Sonarcloud issue
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
GITHUB_TOKEN: {{ '${{' }}secrets.GITHUB_TOKEN{{ '}}' }}
with:
filename: .github/workflows/next_steps_sonarcloud_issue.md
id: sonarcloud
Expand Down

0 comments on commit cc43ad9

Please sign in to comment.