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

commit_description_pipeline.rb « pipeline « banzai « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 607c2731ed35385d0876b1a3254f0623e00750a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Banzai
  module Pipeline
    class CommitDescriptionPipeline < SingleLinePipeline
      def self.filters
        @filters ||= super.concat FilterArray[
          Filter::CommitTrailersFilter,
        ]
      end
    end
  end
end