Skip to content

Commit 838c522

Browse files
committed
Skip guides for Rails 6.1
Rails 6.1.Z only provides the fix for security issues, not bug fixes we do not need to run bug_report_templates against Rails 6.1.z (6-1-stable branch) anymore. This commit is based on the comment below: rails/rails#47411 (comment) There was a similar pull request to skip guides for Rails 6.0. https://github.com/rails/buildkite-config/pull/16/files
1 parent 11b476f commit 838c522

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipeline-generate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ end
328328
if RAILS_VERSION < Gem::Version.new("7.x") && RAILS_VERSION >= Gem::Version.new("6.1")
329329
STEPS.delete_if { |s| s["label"] == "guides (2.7)" || s["label"] == "guides (3.0)" }
330330
end
331-
STEPS.delete_if { |s| s["label"] =~ /^guides/ } if RAILS_VERSION < Gem::Version.new("6.1")
331+
STEPS.delete_if { |s| s["label"] =~ /^guides/ } if RAILS_VERSION < Gem::Version.new("7.0")
332332

333333
###
334334

0 commit comments

Comments
 (0)