`feature` Retry Logic improvements. @Benbentwo (#35)
This pull request updates the configuration for the promotion retry mechanism in the GitHub Action defined in `action.yml`. The main focus is on making the retry logic more robust and configurable.Enhancements to retry configuration:
- Increased the default value of
promote-retry-timeout-secondsfrom15to3000to allow more time for retry attempts. - Introduced a new input parameter
promote-retry-wait-secondswith a default value of30, allowing configuration of the wait time between retries. - Updated the
runssection to use the newpromote-retry-wait-secondsinput forretry_wait_seconds. - Changed the
retry_oncondition fromtimeouttoany, so the action will retry on any failure, not just timeouts.