commitutils

package
v0.25.1 Latest Latest
Warning

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

Go to latest
Published: Jan 16, 2024 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	RefNotSetError           = eris.Errorf("Must initialize with set ref before updating files.")
	RefAlreadySetError       = eris.Errorf("Ref was already set.")
	CouldNotFindFileToRename = func(oldPath string) error {
		return eris.Errorf("Could not find file %s in tree", oldPath)
	}
)

Functions

This section is empty.

Types

type CommitSpec

type CommitSpec struct {
	Name    string
	Email   string
	Message string
}

type RefUpdater

type RefUpdater interface {
	SetRef(ctx context.Context, ref *github.Reference) error
	UpdateFile(ctx context.Context, path string, contentUpdater func(string) string) error
	RenameFile(ctx context.Context, oldPath, newPath string) error
	Commit(ctx context.Context, spec CommitSpec) error
	Code(ctx context.Context) (vfsutils.MountedRepo, error)
}

func NewGithubRefUpdater

func NewGithubRefUpdater(client *github.Client, owner, repo string) RefUpdater

Jump to

Keyboard shortcuts

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