retry
retry copied to clipboard
Retries a GitHub Action step on failure or timeout
We have a pipeline that takes 1 hour to run. Occasionally see the pipeline silently fails after a few seconds/minutes. Unfortunately the failure doesn't raise an exception or an invalid...
I have a flaky step that sometime can be long, so I need some mechanism to change interval time flexibly. Exponential backoff is the best solution, I guess. Do you...
If possible may we have an option that only retries if the failure occured before a configured length of time i.e. if the failure occurs before 60 seconds, retry
Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3. Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299) v2.2.2 Fix: Properties...
I have some tests which are a bit flaky but where I don't _particularly_ care if they take longer. So I'd like to retry them on failure, but not time...
### Description This ensures the shorthand tags are updated on every release, i.e. that `v2` always points to the latest `v2.x.y` ### Testing manually check tags on the next release...
**Describe the bug** The standard Github Actions steps[*] .run step generates default name as \`Run ${command}\`, which is very convenient when reading logs. The nick-fields/retry by default is reflected in...
**Describe the bug** Unlike the standard `run` step of the Github Actions, the `nick-fields/retry` step keeps open the standard input stream of the shell started to execute the `command`. In...
**Describe the bug** We [execute](https://github.com/aws-observability/aws-otel-collector/blob/63d8272af41328bb5a294902d17b98b39000b8e5/.github/workflows/canary.yml#L123) a multi line command whose final step is a `terraform apply`. We have seen behavior where the `terraform apply` will be successful but it will...
This PR tries to allow a step to be rerun on a success return when retry_on is set to success. Otherwise, the default behavior will apply ( stop on first...