Skip to content

Very simple action for retrying a command a given number of times

License

Notifications You must be signed in to change notification settings

ghostsecurity/retry-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Retry action

This very simple action will take a command and a number of times to retry on failure.

Inputs

retry-count

The number of times to retry, defaults to 5

command

Required The command to run

Example usage

uses: ghostsecurity/retry-action@v1
with:
  retry-count: 5
  command: |
    make test-integration