vault/tools/pipeline/internal/cmd/github_list.go
Vault Automation 334683e5c9
[VAULT-39890] actions(copy-pr): enforce license/cla before triggering copy workflow (#9795) (#9919)
* [VAULT-39890] pipeline(github): add list commit-statuses command
* [VAULT-39890] pipeline(github): add check commit-status command
* [VAULT-39890] actions(copy-pr): enforce license/cla before triggering copy workflow

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-07 16:15:14 +00:00

23 lines
455 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package cmd
import (
"github.com/spf13/cobra"
)
func newGithubListCmd() *cobra.Command {
listCmd := &cobra.Command{
Use: "list",
Short: "Github list commands",
Long: "Github list commands",
}
listCmd.AddCommand(newGithubListChangedFilesCmd())
listCmd.AddCommand(newGithubListCommitStatusesCmd())
listCmd.AddCommand(newGithubListWorkflowRunsCmd())
return listCmd
}