mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-13 23:01: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>
20 lines
356 B
Go
20 lines
356 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newGithubCheckCmd() *cobra.Command {
|
|
checkCmd := &cobra.Command{
|
|
Use: "check",
|
|
Short: "Github check commands",
|
|
Long: "Github check commands",
|
|
}
|
|
checkCmd.AddCommand(newCheckGithubCommitStatusCmd())
|
|
|
|
return checkCmd
|
|
}
|