mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-29 12:00:32 +00:00
15 lines
511 B
Ruby
15 lines
511 B
Ruby
# frozen_string_literal: true
|
|
|
|
if stable_branch.encourage_package_and_qa_execution?
|
|
markdown(<<~MARKDOWN)
|
|
## `e2e:test-on-omnibus-ee`
|
|
|
|
**@#{helper.mr_author}, the `e2e:test-on-omnibus-ee` job must complete before merging this merge request.***
|
|
|
|
If the `e2e:test-on-omnibus-ee` pipeline fails and you're unable to diagnose the issue, request assistance in the
|
|
`#s_developer_experience` Slack channel to confirm that the failures are unrelated to the merge request.
|
|
MARKDOWN
|
|
end
|
|
|
|
stable_branch.check!
|