PivotalTracker
のストリーIDとストリー名を取得し、カレントブランチのPullRequest
を作成する
$ gem install pivotal_tracker_pr
- 下記の環境変数を設定しておく
PT_TOKEN
:PivotalTracker
のアクセストークンPT_PROJECT_ID
:PivotalTracker
のプロジェクトID
git commit; git push
の後、PullRequest
を作ろうとするタイミングで、pivotal_tracker_pr create STORY_ID
を実行するSTORY_ID
が指定されてない場合、git
のカレントブランチ名から数値の部分を検索しストリーIDとして使われる- それでもストリーIDが取得出来なかった場合は、単に
hub pull-request --browse
を呼び出すだけ
- デフォルト内容
コマンド実行後 | githubで作成した内容 |
---|---|
- カスタマイズしたい場合は、
.git/PULLREQ_MSG_TEMPLATE
ファイルに内容を書き出しておけば使われます。- 下記の文字列が置換される
置換文字列 | 置換後の内容 |
---|---|
{{STORY_ID}} | ストリーのID |
{{STORY_NAME}} | ストリー内容 |
{{STORY_LINK}} | ストリーのリンク |
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment. Run bundle exec pivotal_tracker_pr
to use the gem in this directory, ignoring other installed copies of this gem.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/blueplanet/pivotal_tracker_pr.