mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-10 00:27:02 +02:00
After the merge workflow has been reversed and branches hosted in `hashicorp/vault` are downstream from community branches hosted in `hashicorp/vault-enterprise`, most contributions to the source code will originate in `hashicorp/vault-enterprise` and be backported to a community branch in hosted in `hashicorp/vault-enterprise`. These community branches will be considered the primary source of truth and we'll automatically push changes from them to mirrors hosted in `hashicorp/vault`. This workflow ought to yield a massive efficiency boost for HashiCorp contributors with access to `hashicorp/vault-enterprise`. Before the workflow would look something like: - Develop a change in vault-enterprise - Manually extract relevant changes from your vault-enterprise branch into a new community vault branch. - Add any stubs that might be required so as to support any enterprise only changes. - Get the community change reviewed. If changes are necessary it often means changing and testing them on both the enteprise and community branches. - Merge the community change - Wait for it to sync to enterprise - *Hope you changes have not broken the build*. If they have, fix the build. - Update your enterprise branch - Get the enterprise branch reviewed again - Merge enterprise change - Deal with complicated backports. After the workflow will look like: - Develop the change on enterprise - Get the change reviewed - Address feedback and test on the same branch - Merge the change - Automation will extract community changes and create a community backport PR for you depending on changes files and branch activeness. - Automation will create any enterprise backports for you. - Fix any backport as necessary - Merge the changes - The pipeline will automatically push the changes to the community branch mirror hosted in hashicorp/vault. No more - Duplicative reviews - Risky merges - Waiting for changes to sync from community to enterprise - Manual decompistion of changes from enterprise and community - *Doing the same PR 3 times* - Dealing with a different backport process depending on which branches are active or not. These changes do come at cost however. Since they always originate from `vault-enterprise` only HashiCorp employees can take advatange of the workflow. We need to be able to support community contributions that originate from the mirrors but retain attribution. That's what this PR is designed to do. The community will be able to open a pull request as normal and have it reviewed as such, but rather than merging it into the mirror we'll instead copy the PR and open it against the corresponding enterprise base branch and have it merged it from there. The change will automatically get backported to the community branch if necessary, which eventually makes it back to the mirror in hashicorp/vault. To handle our squash merge workflow while retaining the correct attribution, we'll automatically create merge commits in the copied PR that include `Co-Authored-By:` trailers for all commit authors on the original PR. We also take care to ensure that the HashiCorp maitainers that approve the PR and/or are assigned to it are also assigned to the copied PR. This change is only the tooling to enable it. The workflow that drives it will be implemented in VAULT-34827. Signed-off-by: Ryan Cragun <me@ryan.ec>
210 lines
4.8 KiB
Go
210 lines
4.8 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package git
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
)
|
|
|
|
// RemoteOpts are the git remote sub-commands, flags and arguments
|
|
// See: https://git-scm.com/docs/git-remote
|
|
type RemoteOpts struct {
|
|
// Sub-command
|
|
Command RemoteCommand
|
|
|
|
// Flags
|
|
Verbose bool // --verbose
|
|
Fetch bool // -f
|
|
Tags bool // --tags
|
|
NoTags bool // --no-tags
|
|
Master string // -m
|
|
Track []string // -t
|
|
Delete bool // --delete
|
|
Auto bool // --auto
|
|
Add bool // --add
|
|
Push bool // --push
|
|
All bool // --all
|
|
NoQuery bool // -n
|
|
DryRun bool // --dry-run
|
|
Prune bool // --prune
|
|
Progress bool // --progress
|
|
NoProgress bool // --no-progress
|
|
|
|
// Targets
|
|
Old string // <old>
|
|
New string // <new>
|
|
NewURL string // <newurl>
|
|
OldURL string // <oldurl>
|
|
Name string // <name>
|
|
Names []string // <name>...
|
|
Branch string // <branch>
|
|
Branches []string // <branch>...
|
|
URL string // <URL>
|
|
}
|
|
|
|
type RemoteCommand string
|
|
|
|
const (
|
|
RemoteCommandAdd RemoteCommand = "add"
|
|
RemoteCommandRename RemoteCommand = "rename"
|
|
RemoteCommandRemove RemoteCommand = "remove"
|
|
RemoteCommandSetHead RemoteCommand = "set-head"
|
|
RemoteCommandSetBranches RemoteCommand = "set-branches"
|
|
RemoteCommandGetURL RemoteCommand = "get-url"
|
|
RemoteCommandSetURL RemoteCommand = "set-url"
|
|
RemoteCommandShow RemoteCommand = "show"
|
|
RemoteCommandPrune RemoteCommand = "prune"
|
|
RemoteCommandUpdate RemoteCommand = "update"
|
|
)
|
|
|
|
// Remote runs the git rm command
|
|
func (c *Client) Remote(ctx context.Context, opts *RemoteOpts) (*ExecResponse, error) {
|
|
// TODO: Handle exit code 2 and 3?
|
|
// https://git-scm.com/docs/git-remote#_exit_status
|
|
return c.Exec(ctx, "remote", opts)
|
|
}
|
|
|
|
// String returns the options as a string
|
|
func (o *RemoteOpts) String() string {
|
|
return strings.Join(o.Strings(), " ")
|
|
}
|
|
|
|
// Strings returns the options as a string slice
|
|
func (o *RemoteOpts) Strings() []string {
|
|
if o == nil {
|
|
return nil
|
|
}
|
|
|
|
opts := []string{}
|
|
|
|
switch o.Command {
|
|
case RemoteCommandAdd:
|
|
opts = append(opts, string(o.Command))
|
|
if o.Fetch {
|
|
opts = append(opts, "-f")
|
|
}
|
|
if o.Tags {
|
|
opts = append(opts, "--tags")
|
|
}
|
|
if o.NoTags {
|
|
opts = append(opts, "--no-tags")
|
|
}
|
|
if o.Master != "" {
|
|
opts = append(opts, "-m", o.Master)
|
|
}
|
|
for _, branch := range o.Track {
|
|
opts = append(opts, "-t", branch)
|
|
}
|
|
opts = append(opts, o.Name, o.URL)
|
|
case RemoteCommandRename:
|
|
opts = append(opts, string(o.Command))
|
|
if o.Progress {
|
|
opts = append(opts, "--progress")
|
|
}
|
|
if o.NoProgress {
|
|
opts = append(opts, "--no-progress")
|
|
}
|
|
opts = append(opts, o.Old, o.New)
|
|
case RemoteCommandRemove:
|
|
opts = append(opts, string(o.Command), o.Name)
|
|
case RemoteCommandSetHead:
|
|
opts = append(opts, string(o.Command), o.Name)
|
|
if o.Auto {
|
|
opts = append(opts, "--auto")
|
|
}
|
|
if o.Delete {
|
|
opts = append(opts, "--delete")
|
|
}
|
|
if o.Branch != "" {
|
|
opts = append(opts, o.Branch)
|
|
}
|
|
case RemoteCommandSetBranches:
|
|
opts = append(opts, string(o.Command))
|
|
if o.Add {
|
|
opts = append(opts, "--add")
|
|
}
|
|
opts = append(opts, o.Name)
|
|
if o.Branch != "" {
|
|
opts = append(opts, o.Branch)
|
|
}
|
|
if len(o.Branches) > 0 {
|
|
opts = append(opts, o.Branches...)
|
|
}
|
|
case RemoteCommandGetURL:
|
|
opts = append(opts, string(o.Command))
|
|
if o.Push {
|
|
opts = append(opts, "--push")
|
|
}
|
|
if o.All {
|
|
opts = append(opts, "--all")
|
|
}
|
|
opts = append(opts, o.Name)
|
|
case RemoteCommandSetURL:
|
|
opts = append(opts, string(o.Command))
|
|
if o.Add {
|
|
opts = append(opts, "--add")
|
|
}
|
|
if o.Delete {
|
|
opts = append(opts, "--delete")
|
|
}
|
|
if o.Push {
|
|
opts = append(opts, "--push")
|
|
}
|
|
opts = append(opts, o.Name)
|
|
if o.NewURL != "" {
|
|
opts = append(opts, o.NewURL)
|
|
}
|
|
if o.OldURL != "" {
|
|
opts = append(opts, o.OldURL)
|
|
}
|
|
if o.URL != "" {
|
|
opts = append(opts, o.URL)
|
|
}
|
|
case RemoteCommandShow:
|
|
if o.Verbose {
|
|
opts = append(opts, "-v")
|
|
}
|
|
opts = append(opts, string(o.Command))
|
|
if o.NoQuery {
|
|
opts = append(opts, "-n")
|
|
}
|
|
if o.Name != "" {
|
|
opts = append(opts, o.Name)
|
|
}
|
|
if len(o.Names) > 0 {
|
|
opts = append(opts, o.Names...)
|
|
}
|
|
case RemoteCommandPrune:
|
|
opts = append(opts, string(o.Command))
|
|
if o.NoQuery {
|
|
opts = append(opts, "-n")
|
|
}
|
|
if o.DryRun {
|
|
opts = append(opts, "--dry-run")
|
|
}
|
|
if o.Name != "" {
|
|
opts = append(opts, o.Name)
|
|
}
|
|
if len(o.Names) > 0 {
|
|
opts = append(opts, o.Names...)
|
|
}
|
|
case RemoteCommandUpdate:
|
|
if o.Verbose {
|
|
opts = append(opts, "-v")
|
|
}
|
|
opts = append(opts, string(o.Command))
|
|
if o.Prune {
|
|
opts = append(opts, "--prune")
|
|
}
|
|
default:
|
|
// git remote
|
|
if o.Verbose {
|
|
opts = append(opts, "-v")
|
|
}
|
|
}
|
|
|
|
return opts
|
|
}
|