-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add note about checkout to separate file docs
- Loading branch information
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -189,6 +189,7 @@ jobs: | |
echo-input: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: @actions/checkout@v2 | ||
- uses: @actions/[email protected] | ||
with: | ||
script: | | ||
|
@@ -211,3 +212,7 @@ the inline script. | |
Note that because you can't `require` things like the GitHub context or | ||
Actions Toolkit libraries, you'll want to pass them as arguments to your | ||
external function. | ||
|
||
Additionally, you'll want to use the [checkout | ||
action](https://github.com/actions/checkout) to make sure your script file is | ||
available. |