Monorepo for Tangled
tangled.org
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3// Lexicon schema: sh.tangled.ci.workflow.run
4
5package tangled
6
7import (
8 lexutil "github.com/bluesky-social/indigo/lex/util"
9)
10
11const (
12 CiWorkflowRunNSID = "sh.tangled.ci.workflow.run"
13)
14
15func init() {
16 lexutil.RegisterType("sh.tangled.ci.workflow.run", &CiWorkflowRun{})
17}
18
19type CiWorkflowRun struct {
20 LexiconTypeID string `json:"$type" cborgen:"$type,const=sh.tangled.ci.workflow.run"`
21 Adapter string `json:"adapter" cborgen:"adapter"`
22 Name string `json:"name" cborgen:"name"`
23 Status *string `json:"status" cborgen:"status"`
24}