sdk

package
v0.6.11 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 30, 2024 License: Apache-2.0 Imports: 20 Imported by: 0

Documentation

Index

Constants

View Source
const (
	ContextKeyAttributes contextKey = "ce-attributes"
	ContextKeyType       contextKey = "ce-type"
)

Define constants for the keys to use with context.WithValue.

Variables

This section is empty.

Functions

func AttributeFromContext added in v0.6.5

func AttributeFromContext(ctx context.Context, key string) interface{}

AttributeFromContext retrieves an attribute by key from the context. Returns nil if the attribute does not exist.

func Serve

func Serve(b Bot)

Types

type Bot

type Bot struct {
	Name     string
	Handlers map[EventType]EventHandlerFunc
}

func NewBot added in v0.6.0

func NewBot(name string, opts ...BotOptions) Bot

func (*Bot) RegisterHandler added in v0.6.0

func (b *Bot) RegisterHandler(handler EventHandlerFunc)

type BotOptions added in v0.6.0

type BotOptions func(*Bot)

func BotWithHandler added in v0.6.0

func BotWithHandler(handler EventHandlerFunc) BotOptions

type EventHandlerFunc added in v0.6.0

type EventHandlerFunc interface {
	EventType() EventType
}

type EventType added in v0.6.0

type EventType string
const (
	PullRequestEvent  EventType = "dev.chainguard.github.pull_request"
	WorkflowRunEvent  EventType = "dev.chainguard.github.workflow_run"
	IssueCommentEvent EventType = "dev.chainguard.github.issue_comment"
)

type GitHubClient

type GitHubClient struct {
	// contains filtered or unexported fields
}

func NewGitHubClient

func NewGitHubClient(ctx context.Context, org, repo, policyName string) GitHubClient

NewGitHubClient creates a new GitHub client, using a new token from OctoSTS, for the given org, repo and policy name.

A new token is created for each client, and is not refreshed. It can be revoked with Close.

func (GitHubClient) AddLabel

func (c GitHubClient) AddLabel(ctx context.Context, pr *github.PullRequest, label string) error

func (GitHubClient) Client

func (c GitHubClient) Client() *github.Client

func (GitHubClient) Close

func (c GitHubClient) Close(ctx context.Context) error

func (GitHubClient) GetWorkflowRunLogs added in v0.6.4

func (c GitHubClient) GetWorkflowRunLogs(ctx context.Context, wre github.WorkflowRunEvent) ([]byte, error)

func (GitHubClient) GetWorkloadRunPullRequestNumber added in v0.6.4

func (c GitHubClient) GetWorkloadRunPullRequestNumber(ctx context.Context, wre github.WorkflowRunEvent) (int, error)

func (GitHubClient) RemoveLabel

func (c GitHubClient) RemoveLabel(ctx context.Context, pr *github.PullRequest, label string) error

func (GitHubClient) SetComment

func (c GitHubClient) SetComment(ctx context.Context, pr *github.PullRequest, botName, content string) error

type IssueCommentHandler added in v0.6.9

type IssueCommentHandler func(ctx context.Context, ice github.IssueCommentEvent, ic *github.IssueComment) error

func (IssueCommentHandler) EventType added in v0.6.9

func (r IssueCommentHandler) EventType() EventType

type PullRequestHandler added in v0.6.0

type PullRequestHandler func(ctx context.Context, pre github.PullRequestEvent, pr *github.PullRequest) error

func (PullRequestHandler) EventType added in v0.6.0

func (r PullRequestHandler) EventType() EventType

type WorkflowRunHandler added in v0.6.0

type WorkflowRunHandler func(ctx context.Context, wre github.WorkflowRunEvent, wr *github.WorkflowRun) error

func (WorkflowRunHandler) EventType added in v0.6.0

func (r WorkflowRunHandler) EventType() EventType

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL