summaryrefslogtreecommitdiff
path: root/app/services/commits/cherry_pick_service.rb
blob: 320e229560d6b1f87730ae6ab1d27b4174a04824 (plain)
1
2
3
4
5
6
7
module Commits
  class CherryPickService < ChangeService
    def create_commit!
      commit_change(:cherry_pick)
    end
  end
end