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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/matching/build_matcher.rb')
-rw-r--r--lib/gitlab/ci/matching/build_matcher.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/gitlab/ci/matching/build_matcher.rb b/lib/gitlab/ci/matching/build_matcher.rb
new file mode 100644
index 00000000000..dff7d9141d9
--- /dev/null
+++ b/lib/gitlab/ci/matching/build_matcher.rb
@@ -0,0 +1,29 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Ci
+ module Matching
+ class BuildMatcher
+ ATTRIBUTES = %i[
+ protected
+ tag_list
+ build_ids
+ project
+ ].freeze
+
+ attr_reader(*ATTRIBUTES)
+ alias_method :protected?, :protected
+
+ def initialize(params)
+ ATTRIBUTES.each do |attribute|
+ instance_variable_set("@#{attribute}", params.fetch(attribute))
+ end
+ end
+
+ def has_tags?
+ tag_list.present?
+ end
+ end
+ end
+ end
+end