generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
31 lines (31 loc) · 971 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
name: 'Create GitHub API Deployment'
branding:
icon: 'download-cloud'
color: 'orange'
description: 'Create a Deployment via the GitHub API'
inputs:
token:
description: 'This should be a token with access to your repository scoped in as a secret'
required: true
ref:
description: The ref to deploy. This can be a branch, tag, or SHA.
Defaults to the value of ${GITHUB_GITHUB_REPOSITORY}
required: false
task:
description: 'Specifies a task to execute (e.g., deploy or deploy:migrations)'
required: false
payload:
description: 'JSON payload with extra information about the deployment'
required: false
environment:
description: 'Name for the target deployment environment (e.g., production, staging, qa)'
required: false
description:
description: 'Short description of the deployment'
required: false
outputs:
id:
description: 'The ID of the Deployment'
runs:
using: 'node12'
main: 'index.js'