forked from chrnorm/deployment-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (33 loc) · 822 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
24
25
26
27
28
29
30
31
32
33
name: "Deployment Action"
description: "Creates a GitHub Deployment"
author: "chrnorm"
branding:
icon: arrow-up
color: black
inputs:
initial_status:
description: "Initial status for the deployment"
default: "pending"
required: false
ref:
description: "The reference for the deployment"
required: false
token:
description: "Github repository token"
required: true
target_url:
description: "Target url location"
required: false
description:
description: "Descriptive message about the deployment"
required: false
environment:
description: "The name of the environment for the deployment"
default: "production"
required: false
outputs:
deployment_id:
description: "The ID of the created deployment"
runs:
using: "node12"
main: "dist/index.js"