複数のリポジトリのプルリクエストを見ていくのが大変なので、いっきにプルリクを出すやつ。 LabelでWIP付いてると無視、一度表示したのは二度出なくなる機能付き。
- インポートのやつをgo getする
- tokenとuserとreposを好きなのに変更
- go run
| package main | |
| import "golang.org/x/tour/tree" | |
| import "fmt" | |
| // Walk walks the tree t sending all values | |
| // from the tree to the channel ch. | |
| func Walk(t *tree.Tree, ch chan int) { | |
| var walker func(t *tree.Tree) | |
| walker = func(t *tree.Tree) { |
| package main | |
| import ( | |
| "code.google.com/p/go-tour/pic" | |
| "image" | |
| "image/color" | |
| ) | |
| type Image struct{} |
| #!/bin/zsh | |
| ### BEGIN INIT INFO | |
| # Provides: hubot | |
| # Required-Start: $all | |
| # Required-Stop: $all | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: starts the hubot service | |
| # Description: starts the Hubot bot for the Campfire rooms |