Skip to content

Github action to wait for a response

License

Notifications You must be signed in to change notification settings

mesh-payments/action-wait-for-response

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Github action to wait for a response

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages

  • Go 54.7%
  • Dockerfile 38.0%
  • Shell 7.3%