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: e8ec7453f0f8636f725a0f7f10ff0fd9b570798e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Banzai
  module Pipeline
    class CommitDescriptionPipeline < SingleLinePipeline
      def self.filters
        @filters ||= super.concat FilterArray[
          Filter::CommitTrailersFilter,
        ]
      end
    end
  end
end