Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
clock

GitHub Action

Wait For Response

v1.0.0

Wait For Response

clock

Wait For Response

Wait for response code from a URL with timeout

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Wait For Response

uses: nev7n/[email protected]

Learn more about this action in nev7n/wait_for_response

Choose a version

Wait For Response docker action

This action makes a HEAD requests to a given URL until the required response code is retrieved or the timeout is met. Initially created to allow test containers to startup before executing tests against them.

Inputs

url

The URL to poll. Default "http://localhost/"

responseCode

Response code to wait for. Default "200"

timeout

Timeout before giving up in milliseconds. Default "30000"

interval

Interval between polling in ms. Default "200" default: 200

Example usage

uses: actions/wait-for-response@v1
with:
  url: 'http://localhost:8081/'
  responseCode: 200
  timeout: 2000
  interval: 500