Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
2f26f81c
Commit
2f26f81c
authored
Dec 20, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
8b614521
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
2 deletions
+17
-2
app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_failed_to_merge.vue
...st_widget/components/states/mr_widget_failed_to_merge.vue
+6
-1
doc/ci/cloud_deployment/index.md
doc/ci/cloud_deployment/index.md
+1
-1
qa/qa/page/merge_request/show.rb
qa/qa/page/merge_request/show.rb
+10
-0
No files found.
app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_failed_to_merge.vue
View file @
2f26f81c
...
...
@@ -84,7 +84,12 @@ export default {
<span
v-else
>
{{
s__
(
'
mrWidget|Merge failed.
'
)
}}
</span>
<span
:class=
"
{ 'has-custom-error': mr.mergeError }">
{{
timerText
}}
</span>
</span>
<button
class=
"btn btn-default btn-sm js-refresh-button"
type=
"button"
@
click=
"refresh"
>
<button
class=
"btn btn-default btn-sm js-refresh-button"
data-qa-selector=
"merge_request_error_content"
type=
"button"
@
click=
"refresh"
>
{{
s__
(
'
mrWidget|Refresh now
'
)
}}
</button>
</div>
...
...
doc/ci/cloud_deployment/index.md
View file @
2f26f81c
...
...
@@ -16,7 +16,7 @@ cloud provider more easily.
GitLab's AWS Docker image provides the
[
AWS Command Line Interface
](
https://aws.amazon.com/cli/
)
,
which enables you to run
`aws`
commands. As part of your deployment strategy, you can run
`aws`
commands directly from
`.gitlab-ci.yml`
by specifying
GitLab's AWS Docker image
.
`.gitlab-ci.yml`
by specifying
[
GitLab's AWS Docker image
](
https://gitlab.com/gitlab-org/cloud-deploy
)
.
Some credentials are required to be able to run
`aws`
commands:
...
...
qa/qa/page/merge_request/show.rb
View file @
2f26f81c
...
...
@@ -29,6 +29,10 @@ module QA
element
:merged_status_content
end
view
'app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_failed_to_merge.vue'
do
element
:merge_request_error_content
end
view
'app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_rebase.vue'
do
element
:mr_rebase_button
element
:no_fast_forward_message
,
'Fast-forward merge is not possible'
# rubocop:disable QA/ElementWithPattern
...
...
@@ -193,6 +197,12 @@ module QA
click_element
:dropdown_toggle
visit_link_in_element
(
:download_plain_diff
)
end
def
wait_for_merge_request_error_message
wait
(
max:
30
,
reload:
false
)
do
has_element?
(
:merge_request_error_content
)
end
end
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment