You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the nick-fields/retry action only supports retrying shell commands via the run: keyword. It does not support retrying uses: steps (i.e., other actions). This limitation means you cannot add retry logic to third-party actions or composite actions directly in your workflow.
Feature request:
Add support for retrying uses: steps (actions), so that users can wrap any action (not just shell commands) with retry logic. This would allow for more robust workflows, especially when using actions that may intermittently fail due to network or external service issues.
Example desired syntax:
- uses: nick-fields/retry@v3with:
max_attempts: 3step:
uses: some/action@v1with:
foo: bar
This would make the action much more flexible and widely applicable in the GitHub Actions ecosystem.
The text was updated successfully, but these errors were encountered:
Currently, the
nick-fields/retry
action only supports retrying shell commands via therun:
keyword. It does not support retryinguses:
steps (i.e., other actions). This limitation means you cannot add retry logic to third-party actions or composite actions directly in your workflow.Feature request:
Add support for retrying
uses:
steps (actions), so that users can wrap any action (not just shell commands) with retry logic. This would allow for more robust workflows, especially when using actions that may intermittently fail due to network or external service issues.Example desired syntax:
This would make the action much more flexible and widely applicable in the GitHub Actions ecosystem.
The text was updated successfully, but these errors were encountered: