commitutils

package
v0.0.0-...-c4d1043 Latest Latest
Warning

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

Go to latest
Published: Feb 20, 2021 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	RefNotSetError           = errors.Errorf("Must initialize with set ref before updating files.")
	RefAlreadySetError       = errors.Errorf("Ref was already set.")
	CouldNotFindFileToRename = func(oldPath string) error {
		return errors.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