github.com/matthewdale/lab@v0.14.0/cmd/ci.go (about)

     1  package cmd
     2  
     3  import (
     4  	"github.com/spf13/cobra"
     5  )
     6  
     7  // ciCmd represents the ci command
     8  var ciCmd = &cobra.Command{
     9  	Use:   "ci",
    10  	Short: "Work with GitLab CI pipelines and jobs",
    11  	Long:  ``,
    12  }
    13  
    14  func init() {
    15  	RootCmd.AddCommand(ciCmd)
    16  }