@@ -65,6 +65,43 @@ Key | Type | Description
65
65
` ref_type ` |` string ` | The object that was deleted. Can be "branch" or "tag".
66
66
` ref ` |` string ` | The full git ref.
67
67
68
+ ##DeploymentEvent
69
+
70
+ Represents a[ deployment] ( /v3/repos/deployments/#list-deployments ) .
71
+
72
+ ###Hook name
73
+
74
+ ` deployment `
75
+
76
+ ###Payload
77
+
78
+ Key | Type | Description
79
+ ----|------|-------------
80
+ ` sha ` |` string ` | The commit SHA for which this deployment was created.
81
+ ` name ` |` string ` | Name of repository for this deployment, formatted as` :owner/:repo ` .
82
+ ` payload ` |` string ` | The optional extra information for this deployment.
83
+ ` description ` |` string ` | The optional human-readable description added to the deployment.
84
+
85
+
86
+ ##DeploymentStatusEvent
87
+
88
+ Represents a[ deployment status] ( /v3/repos/deployments/#list-deployment-statuses ) .
89
+
90
+ ###Hook name
91
+
92
+ ` deployment_status `
93
+
94
+ ###Payload
95
+
96
+ Key | Type | Description
97
+ ----|------|-------------
98
+ ` sha ` |` string ` | The commit SHA for the associated deployment.
99
+ ` name ` |` string ` | Name of repository for the associated deployment, formatted as` :owner/:repo ` .
100
+ ` state ` |` string ` | The new state. Can be` pending ` ,` success ` ,` failure ` , or` error ` .
101
+ ` payload ` |` string ` | The optional extra information for the associated deployment.
102
+ ` target_url ` |` string ` | The optional link added to the status.
103
+ ` description ` |` string ` | The optional human-readable description added to the status.
104
+
68
105
69
106
##DownloadEvent
70
107