mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-12 12:15:00 +00:00
188b9e6eb5
- move cli files from `cli/drone` to `cli/` - move cli main to `cmd/cli/main.go` to match agent and server - use version from `version/version.go` to match agent and server
34 lines
615 B
Go
34 lines
615 B
Go
package repo
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/urfave/cli"
|
|
"github.com/woodpecker-ci/woodpecker/cli/internal"
|
|
)
|
|
|
|
var repoAddCmd = cli.Command{
|
|
Name: "add",
|
|
Usage: "add a repository",
|
|
ArgsUsage: "<repo/name>",
|
|
Action: repoAdd,
|
|
}
|
|
|
|
func repoAdd(c *cli.Context) error {
|
|
repo := c.Args().First()
|
|
owner, name, err := internal.ParseRepo(repo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
client, err := internal.NewClient(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := client.RepoPost(owner, name); err != nil {
|
|
return err
|
|
}
|
|
fmt.Printf("Successfully activated repository %s/%s\n", owner, name)
|
|
return nil
|
|
}
|