Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cherry_pick_service.rb « commits « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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