Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit f14518a

Browse files
committed
add raw tags
1 parent ae515f6 commit f14518a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

responses/00_explain-gh-script.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Okay, that doesn't seem so hard. Now that we know how to do it with Octokit let'
2020
```yaml
2121
- uses: actions/github-script@0.8.0
2222
with:
23-
github-token: ${{secrets.GITHUB_TOKEN}}
23+
github-token: {% raw %}${{secrets.GITHUB_TOKEN}}{% endraw %}
2424
script: |
2525
github.issues.createComment({
2626
issue_number: context.issue.number,
@@ -51,7 +51,7 @@ Again, that's not too hard at all. Now let's do the same thing, only using the G
5151
```yml
5252
- uses: actions/github-script@0.8.0
5353
with:
54-
github-token: ${{secrets.GITHUB_TOKEN}}
54+
github-token: {% raw %}${{secrets.GITHUB_TOKEN}}{% endraw %}
5555
script: |
5656
github.pull.create({
5757
repo: github.context.repo.repo,

0 commit comments

Comments
 (0)