Skip to content
This repository was archived by the owner on Sep 6, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
163 changes: 130 additions & 33 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,13 @@
revision = "f9879dd043f84936a1f8acb8a53b74332a7ae135"

[[constraint]]
name = "github.com/fatih/color"
version = "1.5.0"
branch = "master"
name = "github.com/hashicorp/go-multierror"

[[constraint]]
branch = "master"
name = "github.com/hashicorp/errwrap"

[[constraint]]
name = "github.com/dghubble/sling"
version = "1.1.0"
12 changes: 8 additions & 4 deletions cmd/hiring.go
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
package cmd

import "github.com/spf13/cobra"
import (
"context"

"github.com/spf13/cobra"
)

// NewHiringCmd aggregates the hiring comamnds
func NewHiringCmd() *cobra.Command {
func NewHiringCmd(ctx context.Context) *cobra.Command {
// Repo commands
cmd := &cobra.Command{
Use: "hiring",
Short: "Github hiring tests repository management",
}

cmd.AddCommand(NewHiringSendCmd())
cmd.AddCommand(NewHiringUnseat())
cmd.AddCommand(NewHiringSendCmd(ctx))
cmd.AddCommand(NewHiringUnseat(ctx))

return cmd
}
Loading