-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathdeployment_event.yaml
More file actions
49 lines (47 loc) · 1.25 KB
/
deployment_event.yaml
File metadata and controls
49 lines (47 loc) · 1.25 KB
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
48
49
---
name: deployment_event
description: Process an github deployment event and install a pack if the environment matches.
enabled: true
entry_point: workflows/deployment_event.yaml
runner_type: orquesta
parameters:
repo_fullname:
type: string
description: The full repo path (e.g. [Org|User]/repo_name
required: true
repo_name:
type: string
description: The repo name.
required: true
deploy_ref:
type: string
description: 'The branch to deploy (Note: tags are not supported!)'
default: master
deploy_env:
type: string
description: The environment to target.
default: production
deploy_sha:
type: string
description: The SHA of the commit to deploy.
required: true
deploy_desc:
type: string
description: The description of the deployment.
required: true
deploy_id:
type: integer
description: The deployment ID.
required: true
ssh_url:
type: string
description: The location of the repo for using with SSH.
required: true
creator:
type: string
description: Who created the deployment (will be used to update the deployment status.
required: true
deploy_payload:
type: string
description: Additional payload information from GitHub
default: '{}'