A simple Github Action waiting for a Docker image.
String The name of the image to wait for.
String
Optional tag for the image, default: latest
Integer
Timeout in seconds, default: 3600
Boolean
Wether to fail the job or not if the timeout is over, default: true
String Registry user to use.
String Registry password to use.
Example usage to wait for ubuntu:18.04 image to be available, if the image is not available after 1 minute, the job does not fail and continues.
uses: PaulLesur/[email protected]
with:
image: ubuntu
tag: 18.04
timeout: 60
fail-on-timeout: false