debian-mirror-gitlab/app/services/commits/cherry_pick_service.rb

10 lines
163 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2016-06-02 11:05:42 +05:30
module Commits
class CherryPickService < ChangeService
2017-08-17 22:00:37 +05:30
def create_commit!
2016-09-29 09:46:39 +05:30
commit_change(:cherry_pick)
2016-06-02 11:05:42 +05:30
end
end
end