Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,22 +401,20 @@ All of the following steps will add the action to the workflow file that’s alr
Here is what the full file should look like (we’re using issues instead of the pull request event and removing the reference to the hello world action.)

```yaml
- name: JS Actions

name: JS Actions
on:
issues:
types: [labeled]

jobs:
action:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: ha-ha
- name: ha-ha
uses: ./.github/actions/joke-action
```

</details>

<details id=6>
Expand Down