Releases: JakePartusch/wait-for-netlify-action
Releases · JakePartusch/wait-for-netlify-action
v1.4
What's Changed
- build(deps): bump axios from 0.19.0 to 0.21.2 by @dependabot in #17
- build(deps): bump node-fetch from 2.6.1 to 2.6.7 by @dependabot in #20
- build(deps): bump @actions/core from 1.2.6 to 1.9.1 by @dependabot in #21
- build(deps): bump follow-redirects from 1.14.5 to 1.15.2 by @dependabot in #25
- Update Node.js version by @JakePartusch in #26
- feat: updating dependencies by @JakePartusch in #27
Full Changelog: v1.3...v1.4
v1.3
What's Changed
- build(deps): bump node-fetch from 2.6.0 to 2.6.1 by @dependabot in #11
- build(deps): bump @actions/core from 1.2.0 to 1.2.6 by @dependabot in #12
- Feature: Add base path by @jawakarD in #16
New Contributors
- @dependabot made their first contribution in #11
- @jawakarD made their first contribution in #16
Full Changelog: v1.2...v1.3
Adding a request headers parameter
Support for secured sites and others they may require request headers.
Thanks @gslama-akqa !
Updating Netlify application tld
Netlify recently changed application tlds from .com to .app.
Initial Release 🎉
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