This repository was archived by the owner on Sep 1, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ steps:
608
608
with : e-line.md
609
609
data :
610
610
filename : .github/workflows/my-workflow.yml
611
- code : ' - uses: ./.github/actions/joke-action'
611
+ code : ' uses: ./.github/actions/joke-action'
612
612
got : ' %actions.workflowFileContents%'
613
613
614
614
- type : removeBranchProtection
@@ -688,7 +688,7 @@ steps:
688
688
with : e-line.md
689
689
data :
690
690
filename : .github/workflows/my-workflow.yml
691
- code : ' repo-token: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}'
691
+ code : {% raw %}repo-token: ${{ secrets.GITHUB_TOKEN }}{% endraw %}
692
692
got : ' %actions.workflowFileContents%'
693
693
694
694
- type : gate
@@ -700,7 +700,7 @@ steps:
700
700
with : e-line.md
701
701
data :
702
702
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 %}
704
704
got : ' %actions.workflowFileContents%'
705
705
706
706
- type : closeIssue
Original file line number Diff line number Diff line change @@ -76,11 +76,12 @@ That was a lot of information that you just learned. @{{user.login}} it is time
76
76
</details>
77
77
78
78
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
+ ```
84
85
85
86
---
86
87
You can’t perform that action at this time.
0 commit comments