Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ This action also features [advanced configuration](docs/advanced-configuration.m
| `event-type-suffix` | The repository dispatch event type suffix for the commands. | `-command` |
| `static-args` | A comma or newline separated list of arguments that will be dispatched with every command. | |
| `dispatch-type` | The dispatch type; `repository` or `workflow`. See [dispatch-type](#dispatch-type) for further details. | `repository` |
| `config` | | JSON configuration for commands. See [Advanced configuration](docs/advanced-configuration.md) | |
| `config-from-file` | | JSON configuration from a file for commands. See [Advanced configuration](docs/advanced-configuration.md) | |
| `config` | JSON configuration for commands. See [Advanced configuration](docs/advanced-configuration.md) | |
| `config-from-file` | JSON configuration from a file for commands. See [Advanced configuration](docs/advanced-configuration.md) | |
| `workflow-extension` | The file extension used for workflows (yaml|yml) | `yml` |

#### `token`

Expand Down
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ inputs:
repository:
description: 'The full name of the repository to send the dispatch events.'
default: ${{ github.repository }}
workflow-extension:
description: 'The workflow file extension to use when dispatching to a workflow.'
default: yml
event-type-suffix:
description: 'The repository dispatch event type suffix for the commands.'
default: -command
Expand Down
Loading