-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathaction.yml
More file actions
33 lines (33 loc) · 1009 Bytes
/
action.yml
File metadata and controls
33 lines (33 loc) · 1009 Bytes
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
name: Render GitHub Action
description: GitHub Action to check a Render deployment status
author: Bounce Inc.
branding:
icon: square
color: green
inputs:
service-id:
required: true
description: The id of the Render service to be tracked
render-token:
required: false
description: Render API token to use instead of the email/password combination
sleep:
required: false
description: Sleep time between the render deployment success and setting the Github deployment as successful
default: '0'
retries:
required: false
description: 'Maximum number of retries trying to find the deployment. Note: Retries will be attempted every 5 seconds'
default: '50'
wait:
required: false
description: Sleep time between retries to find Render deployments statuses
default: '8000'
outputs:
url:
description: The URL of the Render service
status:
description: The status of the Render service deployment
runs:
using: node20
main: dist/index.js