Skip to content

Releases: JakePartusch/wait-for-netlify-action

v1.4

29 Dec 17:55
f1e1370
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3...v1.4

v1.3

18 Nov 21:00
7ccf91c
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2...v1.3

Adding a request headers parameter

01 May 16:43
efd2dfc
Compare
Choose a tag to compare

Support for secured sites and others they may require request headers.

Thanks @gslama-akqa !

Updating Netlify application tld

22 Apr 02:41
7dcdeb4
Compare
Choose a tag to compare

Netlify recently changed application tlds from .com to .app.

Initial Release 🎉

06 Jan 20:33
a0de046
Compare
Choose a tag to compare

Wait for Netlify — A GitHub Action ⏱

Do you have other Github actions (Lighthouse, Cypress, etc) that depend on the Netlify Preview URL? This action will wait until the url is available before running the next task.

Inputs

site_name

Required The name of the Netlify site to reach https://{site_name}.netlify.com

max_timeout

Optional — The amount of time to spend waiting on Netlify. Defaults to 60 seconds

Outputs

url

The netlify deploy preview url that was deployed.

Example usage

Basic Usage

steps:
  - name: Waiting for 200 from the Netlify Preview
    uses: jakepartusch/wait-for-netlify-action@v1
    id: waitFor200
    with:
      site_name: "jakepartusch"
      max_timeout: 60