forked from quantizor/wait-for-netlify-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
23 lines (23 loc) · 798 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: "Wait for Netlify Deployment"
description: "Waits for the current GitHub commit Netlify deploy to be ready. Useful in combination with tools like Lighthouse or Cypress."
branding:
icon: "clock"
color: "blue"
inputs:
site_id:
description: "The Netlify site ID to test against, get this from the Netlify UI under site settings."
required: true
max_timeout:
description: "The max time to wait after the deployment is ready for a valid HTTP status code."
required: false
context:
description: "The Netlify deploy context. Can be branch-deploy, production or deploy-preview."
required: false
outputs:
deploy_id:
description: "The Netlify deployment ID"
url:
description: "The fully qualified deployment URL"
runs:
using: "node16"
main: "index.js"