Monorepo for Tangled
tangled.org
1{
2 "lexicon": 1,
3 "id": "sh.tangled.pipeline.cancelPipeline",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Cancel a running pipeline",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": ["repo", "pipeline", "workflow"],
13 "properties": {
14 "repo": {
15 "type": "string",
16 "format": "at-uri",
17 "description": "repo at-uri, spindle can't resolve repo from pipeline at-uri yet"
18 },
19 "pipeline": {
20 "type": "string",
21 "format": "at-uri",
22 "description": "pipeline at-uri"
23 },
24 "workflow": {
25 "type": "string",
26 "description": "workflow name"
27 }
28 }
29 }
30 }
31 }
32 }
33}