summaryrefslogtreecommitdiff
path: root/app/services/commits/cherry_pick_service.rb
blob: 4c5b15b2f95e8f22f9367c8860289c1db92d03e9 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Commits
  class CherryPickService < ChangeService
    def create_commit!
      commit_change(:cherry_pick)
    end
  end
end