Skip to content

Instantly share code, notes, and snippets.

@claymccoy
Last active March 5, 2019 02:21
Show Gist options
  • Save claymccoy/88f95028cc13b27208a21373defa65f5 to your computer and use it in GitHub Desktop.
Save claymccoy/88f95028cc13b27208a21373defa65f5 to your computer and use it in GitHub Desktop.
{
"pipelines": [{
"application": "app1",
"name": "just waiting",
"description": "test1",
"parameterConfig": [],
"notifications": [],
"triggers": [],
"stages": [{
"refId": "wait1",
"requisiteStageRefIds": [],
"type": "wait",
"waitTime": "420"
}],
"expectedArtifacts": [],
"keepWaitingPipelines": false,
"limitConcurrent": true
}, {
"application": "app2",
"name": "just judging",
"description": "",
"parameterConfig": [],
"notifications": [],
"triggers": [],
"stages": [{
"refId": "manualJudgment1",
"requisiteStageRefIds": [],
"instructions": "Judge me.",
"judgmentInputs": [],
"type": "manualJudgment"
}],
"expectedArtifacts": [],
"keepWaitingPipelines": false,
"limitConcurrent": true
}, {
"application": "app2",
"name": "waiting then judging",
"description": "",
"parameterConfig": [],
"notifications": [],
"triggers": [],
"stages": [{
"refId": "wait1",
"requisiteStageRefIds": [],
"type": "wait",
"waitTime": "420",
"comments": "Wait before judging me."
}, {
"refId": "manualJudgment2",
"requisiteStageRefIds": ["wait1"],
"instructions": "Okay, Judge me now.",
"judgmentInputs": [],
"type": "manualJudgment"
}],
"expectedArtifacts": [],
"keepWaitingPipelines": false,
"limitConcurrent": true
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment