mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-14 07:11:11 +01:00
* [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>
23 lines
455 B
Go
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
|
|
}
|