Class: Ora::Cli::PushToUat
- Defined in:
- lib/ora/cli/tasks/push_to_uat.rb
Constant Summary
Constants inherited from Task
Instance Attribute Summary
Attributes inherited from Task
Instance Method Summary collapse
Methods inherited from Task
Constructor Details
This class inherits a constructor from Ora::Cli::Task
Instance Method Details
#commands ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/ora/cli/tasks/push_to_uat.rb', line 6 def commands ' :feature_branch! :clean_branch! git checkout develop git pull origin develop git checkout #{branch} git merge develop git checkout uat git pull origin uat git merge #{branch} git push origin uat git checkout #{branch} :slack_message_to_paste ' end |