Monorepo for Tangled
Something went wrong. Try again.
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
package tangled
// schema: sh.tangled.ci.queryPipelines
import ( "context"
"github.com/bluesky-social/indigo/lex/util")
const ( CiQueryPipelinesNSID = "sh.tangled.ci.queryPipelines")
// CiQueryPipelines_Output is the output of a sh.tangled.ci.queryPipelines call.type CiQueryPipelines_Output struct { Cursor *string `json:"cursor,omitempty" cborgen:"cursor,omitempty"` Pipelines []*CiPipeline `json:"pipelines" cborgen:"pipelines"` // total: Maximum number of pipelines Total int64 `json:"total" cborgen:"total"`}
// CiQueryPipelines calls the XRPC method "sh.tangled.ci.queryPipelines".//// commits: Filter pipelines by commits. When provided, maximum one pipeline per commit id will be returned.// cursor: Pagination cursor// kinds: Filter pipelines by trigger kind. When provided, pipelines matching any listed kind are returned; when omitted, every kind is returned.// limit: Maximum number of pipelines to return// repo: DID of the repositoryfunc CiQueryPipelines(ctx context.Context, c util.LexClient, commits []string, cursor string, kinds []string, limit int64, repo string) (*CiQueryPipelines_Output, error) { var out CiQueryPipelines_Output
params := map[string]interface{}{} if len(commits) != 0 { params["commits"] = commits } if cursor != "" { params["cursor"] = cursor } if len(kinds) != 0 { params["kinds"] = kinds } if limit != 0 { params["limit"] = limit } params["repo"] = repo if err := c.LexDo(ctx, util.Query, "", "sh.tangled.ci.queryPipelines", params, nil, &out); err != nil { return nil, err }
return &out, nil}