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

Commit cae9e8f

Browse files
committed
add minor formatting fixes
1 parent bea66f8 commit cae9e8f

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ steps:
608608
with: e-line.md
609609
data:
610610
filename: .github/workflows/my-workflow.yml
611-
code: '- uses: ./.github/actions/joke-action'
611+
code: 'uses: ./.github/actions/joke-action'
612612
got: '%actions.workflowFileContents%'
613613

614614
- type: removeBranchProtection
@@ -688,7 +688,7 @@ steps:
688688
with: e-line.md
689689
data:
690690
filename: .github/workflows/my-workflow.yml
691-
code: 'repo-token: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}'
691+
code: {% raw %}repo-token: ${{ secrets.GITHUB_TOKEN }}{% endraw %}
692692
got: '%actions.workflowFileContents%'
693693

694694
- type: gate
@@ -700,7 +700,7 @@ steps:
700700
with: e-line.md
701701
data:
702702
filename: .github/workflows/my-workflow.yml
703-
code: 'joke: {% raw %}${{ steps.jokes.outputs.joke-output }}{% endraw %}'
703+
code: {% raw %}joke: ${{ steps.jokes.outputs.joke-output }}{% endraw %}
704704
got: '%actions.workflowFileContents%'
705705

706706
- type: closeIssue

responses/07_update-files.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,12 @@ That was a lot of information that you just learned. @{{user.login}} it is time
7676
</details>
7777
7878
2. Save the changes to each file
79-
3. Commit the changes to this branch
80-
`git add main.js action.yml workflow.yml`
81-
`git commit -m 'allow input in all action files'`
82-
4. Push the changes from your local machine to this repository.
83-
`git push`
79+
3. Commit the changes to this branch and push them to GitHub:
80+
```shell
81+
git add main.js action.yml workflow.yml
82+
git commit -m 'allow input in all action files'
83+
git push
84+
```
8485

8586
---
8687

0 commit comments

Comments
 (0)