Skip to content

Commit

Permalink
Docs: Fix default values (#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pandapip1 authored Sep 16, 2022
1 parent 2ce5d41 commit d051625
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ It would be more useful to use this with other GitHub Actions' outputs.
| --------------- | ----------------------------------------------------------------------------------------------- | -------- | -------- | ------------------------------------------------------------------------------- |
| `github_token` | A GitHub token. | `string` | `false` | `${{ github.token }}` |
| `labels` | The labels' name to be removed. Must be separated with line breaks if there're multiple labels. | `string` | `true` | `N/A` |
| `number` | The number of the issue or pull request. | `number` | `false` | `N/A` |
| `repo` | The owner and repository name. e.g.) `Codertocat/Hello-World` | `string` | `false` | `${{ github.event.issue.number }}` or `${{ github.event.pull_request.number }}` |
| `number` | The number of the issue or pull request. | `number` | `false` | `${{ github.event.issue.number }}` or `${{ github.event.pull_request.number }}` |
| `repo` | The owner and repository name. e.g.) `Codertocat/Hello-World` | `string` | `false` | `N/A` |
| `fail_on_error` | Whether the action fails or not when getting errors. [true,false] | `bool` | `false` | `false` |

## Example
Expand Down

0 comments on commit d051625

Please sign in to comment.