vault/tools/pipeline/internal/cmd/github_check.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

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
}