Wait For Endpoint
ActionsA GitHub Action that polls a specified HTTP endpoint until it becomes available
v1.0.4
LatestTags
(2)This action polls a specified HTTP or HTTPS endpoint until it responds with the expected status code or the timeout is exceeded.
This action can be particularly useful to check the status of a container launched with the -d flag as part of a CI workflow.
Required The URL to poll.
Required The HTTP method to use. Default "GET".
Required The HTTP status that is expected. Default "200".
Required The maximum time the polling is allowed to run for (in milliseconds). Default "60000".
Required The interval at which the polling should happen (in milliseconds). Default "1000".
uses: emilioschepis/[email protected]
with:
url: http://localhost:8080
method: GET
expected-status: 200
timeout: 60000
interval: 1000Wait For Endpoint is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.