actions-marketplace-validations/retry action
Retries an Github Action step on failure
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| action | Github action name. Should be defined action or command, not both. | no | — |
| command | Command to run. Should be defined action or command, not both. | no | — |
| pre_retry_command | Command to run between retries. | no | — |
| with | An options map for Github action | no | — |
| current_path | Setup working directory for the action. Works with only commands. Default is `github.workspace` path. | no | — |
| steps_context | Pass context `steps` into an external action. If you need valid context `steps`, then add option as described in `Readme.md`. | no | {} |
| attempt_limit | Number of attempts | no | 2 |
| attempt_delay | A delay between attempts in ms | no | 0 |
| time_out | Set time out in ms for entire step including all retries. By default actions sets no time out. | no | false |
| retry_condition | Use any valid expression to decide the continuation of retries. Default value is true. | no | true |
| github_token | A token to access private actions. Does not required for public actions. | no | — |
Outputs
| name | description |
|---|---|
| outputs | A pretty print JSON map with outputs from the wrapped action. |