aboutsummaryrefslogtreecommitdiffstats
path: root/commands/label_add.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/label_add.go')
-rw-r--r--commands/label_add.go44
1 files changed, 44 insertions, 0 deletions
diff --git a/commands/label_add.go b/commands/label_add.go
new file mode 100644
index 00000000..06c4e6c5
--- /dev/null
+++ b/commands/label_add.go
@@ -0,0 +1,44 @@
+package commands
+
+import (
+ "fmt"
+
+ "github.com/MichaelMure/git-bug/cache"
+ "github.com/MichaelMure/git-bug/commands/select"
+ "github.com/spf13/cobra"
+)
+
+func runLabelAdd(cmd *cobra.Command, args []string) error {
+ backend, err := cache.NewRepoCache(repo)
+ if err != nil {
+ return err
+ }
+ defer backend.Close()
+
+ b, args, err := _select.ResolveBug(backend, args)
+ if err != nil {
+ return err
+ }
+
+ changes, err := b.ChangeLabels(args, nil)
+
+ for _, change := range changes {
+ fmt.Println(change)
+ }
+
+ if err != nil {
+ return err
+ }
+
+ return b.Commit()
+}
+
+var labelAddCmd = &cobra.Command{
+ Use: "add [<id>] <label>[...]",
+ Short: "Add a label",
+ RunE: runLabelAdd,
+}
+
+func init() {
+ labelCmd.AddCommand(labelAddCmd)
+}