зеркало из https://github.com/mozilla/pd-cli.git
f70a418c2e | ||
---|---|---|
command/repo | ||
scripts | ||
.gitignore | ||
Gopkg.lock | ||
Gopkg.toml | ||
LICENSE | ||
README.md | ||
cli.go |
README.md
pd-cli
A Product Delivery CLI toolbox of awesomeness
Install
Install dep
go get github.com/mozilla/pd-cli
cd $GOPATH/src/github.com/mozilla/pd-cli
dep ensure && go install .
pd-cli -h
Github Access
The pd-cli requires a Github access token to perform most of its commands.
- Create a GH Personal Access Token
- Give the token all repo permissions
- Set the token in the environment variable
GH_ACCESS_TOKEN
Usage
- Print help:
pd-cli help
pd-cli repo help
pd-cli create-milestone help
- Check a repo (these are the same):
pd-cli repo check all github.com/mozilla/pd-cli
pd-cli repo check all mozilla/pd-cli
- Specific checks:
pd-cli repo check help
-- prints helppd-cli repo check topic
-- checks for Product Delivery repo topicspd-cli repo check labels
-- verifies Product Delivery labels are correctpd-cli repo check unassigned
-- checks all P1 issues are assigned to somebodypd-cli repo check unlabled
-- finds issues that do not have a labelpd-cli repo check milestones
-- verifies milestones have a project to track them
- Initializing a repo:
pd-cli repo init mozilla/pd-cli
-- creates labels and a "Version 1.0" milestone and projectpd-cli repo create-milestone mozilla/pd-cli -m "Version 2.0"
- creates a new milestone and project