Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nev7n/wait_for_response

Github action to wait for a response
https://github.com/nev7n/wait_for_response

Last synced: 4 months ago
JSON representation

Github action to wait for a response

Awesome Lists containing this project

README

        

# Wait For Response docker action

This action makes 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: nev7n/wait_for_response@v1
with:
url: 'http://localhost:8081/'
responseCode: 200
timeout: 2000
interval: 500
```