Monorepo for Tangled tangled.org
12

Configure Feed

Select the types of activity you want to include in your feed.

1{ 2 "lexicon": 1, 3 "id": "sh.tangled.ci.getPipeline", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": ["pipeline"], 10 "properties": { 11 "pipeline": { 12 "type": "string", 13 "format": "tid", 14 "description": "Spindle-local pipeline id" 15 } 16 } 17 }, 18 "output": { 19 "encoding": "application/json", 20 "schema": { 21 "type": "ref", 22 "ref": "sh.tangled.ci.defs#pipeline" 23 } 24 }, 25 "errors": [ 26 { 27 "name": "PipelineNotFound", 28 "description": "Pipeline not found" 29 }, 30 { 31 "name": "InvalidRequest", 32 "description": "Invalid request parameters" 33 } 34 ] 35 } 36 } 37}