forked from teamniteo/reviewapps-deploy-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
47 lines (43 loc) · 1.25 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Meta data for the action.
name: 'Heroku Review App Deployment Status'
author: 'niteo.co'
description: 'A Github Action to test the deployment status of a Heroku Review App.'
branding:
icon: 'git-pull-request'
color: 'orange'
runs:
using: 'docker'
image: 'Dockerfile'
inputs:
checks:
description: Comma separated list of checks to perform.
required: false
# Default: Perform all checks
default: build, response
build_time_delay:
description: Delay for the build stage of the review app.
required: false
default: 5
load_time_delay:
description: Delay for the app to load and start serving after it is built.
required: false
default: 5
interval:
description: Interval to repeat the deployment check in seconds.
required: false
default: 10
accepted_responses:
description: Comma separated status which can be accepted.
required: false
default: 200
deployments_timeout:
description: Maximum waiting time to fetch the deployments.
required: false
default: 120
publish_timeout:
description: Maximum time to spend retrying the HTTP response check until it succeeds.
required: false
default: 120
outputs:
review_app_url:
description: "Review App URL from the action."