...
Expand |
---|
title | Pipeline Stage Completed |
---|
|
Code Block |
---|
{
"eventType":"Pipeline Stage Completed",
"actor":"buildmonitorworker",
"object":"REST Release 1",
"timestamp":"2020-12-16 15:12:41 -0500",
"payload":{
"pipelineExecutionId":null,
"pipelineStageExecution":{
"stageExecutionId":104516,
"environmentId":11595,
"executionStatus":"FAILED",
"startTime":"2020-12-16 15:12:19 -0500",
"endTime":"2020-12-16 15:12:41 -0500",
"activeStep":null
},
"pipeline":{
"pipelineId":10001,
"pipelineName":"Simple"
},
"environment":{
"environmentId":11595,
"environmentName":"Dev",
"environmentCode":"DEV"
},
"release":{
"releaseId":11611,
"releaseName":"REST Release 1"
},
"snapshot":{
"snapshotId":104506,
"snapshotName":"07-16-2020 15:12:18",
"snapshotStatus":"INITIATED",
"description":null,
"releaseId":11611
}
}
} |
|
Release Started
The Release Started event is triggered whenever a release is started in FlexDeploy. Common use cases can include logic you want to perform after any release is started. For example you may want to start a sprint in Jira whenever the release is started.
Expand |
---|
title | Release Started Payload |
---|
|
Code Block |
---|
| {
"eventType":"Release Started",
"actor":"fdadmin",
"object":"testRelease",
"timestamp":"2020-08-18 16:08:48 -0500",
"payload":{
"release":{
"releaseId":54052,
"releaseName":"testRelease",
"releaseDescription":null
},
"startDate":"2020-09-18",
"endDate":null,
"projects":[
{
"projectId":440135,
"projectName":"partialFile",
"streamName":"master",
"buildEnvironment":{
"environmentId":null,
"environmentName":null,
"environmentCode":null
},
"groupName":null
}
],
"pipeline":{
"pipelineId":17854,
"pipelineName":"DanPipeline"
}
}
} |
|
Release Ended
The Release Ended event is triggered whenever a release is endedin FlexDeploy. Common use cases can include logic you want to perform after any release is ended. For example you may want to enda sprint in Jira whenever the release is ended.
Expand |
---|
title | Release Ended Payload |
---|
|
Code Block |
---|
| {
"eventType":"Release Ended",
"actor":"fdadmin",
"object":"testRelease",
"timestamp":"2020-10-18 16:10:55 -0500",
"payload":{
"release":{
"releaseId":54052,
"releaseName":"testRelease",
"releaseDescription":null
},
"startDate":"2020-09-18",
"endDate":null,
"projects":[
{
"projectId":440135,
"projectName":"partialFile",
"streamName":"master",
"buildEnvironment":{
"environmentId":null,
"environmentName":null,
"environmentCode":null
},
"groupName":null
}
],
"pipeline":{
"pipelineId":17854,
"pipelineName":"DanPipeline"
}
}
} |
|
Snapshot Completed
The Snapshot Completed event is triggered whenever a snapshot eventually completes successfully or fails to build.
...