// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. // Lexicon schema: sh.tangled.ci.pipeline package tangled import ( lexutil "github.com/bluesky-social/indigo/lex/util" ) const ( CiPipelineNSID = "sh.tangled.ci.pipeline" ) func init() { lexutil.RegisterType("sh.tangled.ci.pipeline", &CiPipeline{}) } type CiPipeline struct { LexiconTypeID string `json:"$type" cborgen:"$type,const=sh.tangled.ci.pipeline"` Event *CiEvent `json:"event" cborgen:"event"` WorkflowRuns []string `json:"workflowRuns" cborgen:"workflowRuns"` }