this repo has no description
at sl/spindle-adapters 23 lines 565 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3// Lexicon schema: sh.tangled.ci.pipeline 4 5package tangled 6 7import ( 8 lexutil "github.com/bluesky-social/indigo/lex/util" 9) 10 11const ( 12 CiPipelineNSID = "sh.tangled.ci.pipeline" 13) 14 15func init() { 16 lexutil.RegisterType("sh.tangled.ci.pipeline", &CiPipeline{}) 17} 18 19type CiPipeline struct { 20 LexiconTypeID string `json:"$type" cborgen:"$type,const=sh.tangled.ci.pipeline"` 21 Event *CiEvent `json:"event" cborgen:"event"` 22 WorkflowRuns []string `json:"workflowRuns" cborgen:"workflowRuns"` 23}