Transit JIRA issues automatically after deployment.
Add this line to your application's Gemfile:
gem 'capistrano-jira'
And then execute:
$ bundle
Or install it yourself as:
$ gem install capistrano-jira
- Require library in
Capfile
require 'capistrano/jira'
- Set general parameters in
config/deploy.rb
set :jira_username, 'john.doe@exalmple.com' # default: ENV['CAPISTRANO_JIRA_USERNAME']
set :jira_password, 'p@55w0rD' # default: ENV['CAPISTRANO_JIRA_PASSWORD']
set :jira_site, 'https://example.atlassian.net' # default: ENV['CAPISTRANO_JIRA_SITE']
set :jira_comment_on_transition, false # default: true
set :jira_project_key, 'PROJ' # required
set :jira_validate_commit_messages, true # default: false; transit issues only if key found in commit messages
set :jira_commit_messages_limit, 123 # default: 1000; last commits messages lookup limit
- Set parameters for specific environment (for example
config/deploy/staging.rb
)
set :jira_status_name, 'QA passed' # required; name of status from which issues should be transited
set :jira_transition_name, 'Deploy to staging' # required; name of transition that should be executed
set :jira_filter_jql, 'component = Backend' # optional; additional JQL filter to scope issues
Then while running deployment you should see transitioned issues.
When transition fails for some reason (for example HTTP Error) it will inform you but NOT fail whole deployment.
To check if setup is proper or diagnose a problem run for your environment
cap staging jira:check
Proper output will be similar to this:
=> Required params
jira_username = wojtek@codegarden.online
jira_password = **********
jira_site = https://example.atlassian.net
jira_project_key = PROJ
jira_status_name = QA passed
jira_transition_name = Deploy to staging
<= OK
=> Checking connection
<= OK
=> Checking for given project key
<= OK
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.
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/[USERNAME]/capistrano-jira.