You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my deploy.rb, I included require 'capistrano-github-pullrequests' and set :pull_request_number, '1144', but it deploys the most recent commit in HEAD instead. Anything else I need to get this gem working?
deploy.rb:
require 'bundler/capistrano'
require 'capistrano-github-pullrequests'
load 'config/deploy/shared'
set :pull_request_number, '1144'
set :repository, 'repo-frontend:someorganization/someapp.git'
set :scm, :git
set :application, 'someapp'
set :deploy_to, "/var/www/somesite.org/#{application}"
set :user, "someadmin"
set :group, "some-dev"
set :deploy_via, :remote_cache
default_run_options[:pty] = true
set :ssh_options, {
:forward_agent => true,
:config => false
}
set :keep_releases, 3
set :use_sudo, :false
role :web, 'web-01.someapp.org'
role :app, 'web-01.someapp.org'
The text was updated successfully, but these errors were encountered:
In my deploy.rb, I included
require 'capistrano-github-pullrequests'
andset :pull_request_number
, '1144', but it deploys the most recent commit in HEAD instead. Anything else I need to get this gem working?deploy.rb:
The text was updated successfully, but these errors were encountered: