You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -150,7 +150,7 @@ We will start with using the parameters that are **required** and later implemen
150
150
description: "use an external API to retrieve and display a joke"
151
151
152
152
runs:
153
-
using: "node12"
153
+
using: "node16"
154
154
main: "main.js"
155
155
```
156
156
3. Save the `action.yml` file
@@ -208,7 +208,7 @@ Our action does not require much metadata for it to run correctly. We will not b
208
208
description: The resulting joke from the icanhazdadjokes API
209
209
210
210
runs:
211
-
using: "node12"
211
+
using: "node16"
212
212
main: "main.js"
213
213
```
214
214
2. Save the `action.yml` file
@@ -420,7 +420,9 @@ jobs:
420
420
uses: ./.github/actions/joke-action
421
421
422
422
```
423
-
423
+
424
+
You can make these changes in your repository by opening [`my-workflow.yml`](/.github/workflows/my-workflow.yml) in another browswer tab and [editing the file directly](https://docs.github.com/en/repositories/working-with-files/managing-files/editing-files). Make sure to selectthe`Commit directly to the main branch` option.
425
+
424
426
</details>
425
427
426
428
<details id=6>
@@ -435,7 +437,7 @@ Everything is all set up and now we are ready to start laughing. You will find y
435
437
1. Open issue #1 in the "Issues tab"
436
438
2. Apply the `first-joke` label to the issue
437
439
3. Wait a few seconds and then apply the `second-joke` label to the issue
438
-
4. Check the workflow results on the "Actions tab"
440
+
4. Check the `JS Actions` workflow results on the "Actions tab"
0 commit comments