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
bd1e1afd
Commit
bd1e1afd
authored
Oct 10, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
ee97c0d1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+4
-4
doc/user/clusters/applications.md
doc/user/clusters/applications.md
+1
-1
qa/qa/page/project/settings/main.rb
qa/qa/page/project/settings/main.rb
+0
-2
qa/qa/resource/repository/commit.rb
qa/qa/resource/repository/commit.rb
+4
-2
No files found.
doc/ci/yaml/README.md
View file @
bd1e1afd
...
...
@@ -755,7 +755,7 @@ the status of other builds:
job
:
script
:
"
echo
Hello,
Rules!"
rules
:
-
if
:
'
$CI_MERGE_REQUEST_TARGET_BRANCH
==
"master"'
-
if
:
'
$CI_MERGE_REQUEST_TARGET_BRANCH
_NAME
==
"master"'
when
:
always
-
if
:
'
$VAR
=~
/pattern/'
when
:
manual
...
...
@@ -781,11 +781,11 @@ evaluated should be conjoined into a single expression using `&&` or `||`. For e
job
:
script
:
"
echo
Hello,
Rules!"
rules
:
-
if
:
'
$CI_MERGE_REQUEST_SOURCE_BRANCH
=~
/^feature/
&&
$CI_MERGE_REQUEST_TARGET_BRANCH
==
"master"'
# This rule will be evaluated
-
if
:
'
$CI_MERGE_REQUEST_SOURCE_BRANCH
_NAME
=~
/^feature/
&&
$CI_MERGE_REQUEST_TARGET_BRANCH_NAME
==
"master"'
# This rule will be evaluated
when
:
always
-
if
:
'
$CI_MERGE_REQUEST_SOURCE_BRANCH
=~
/^feature/'
# This rule will only be evaluated if the target branch is not "master"
-
if
:
'
$CI_MERGE_REQUEST_SOURCE_BRANCH
_NAME
=~
/^feature/'
# This rule will only be evaluated if the target branch is not "master"
when
:
manual
-
if
:
'
$CI_MERGE_REQUEST_SOURCE_BRANCH'
# If neither of the first two match but the simple presence does, we set to "on_success" by default
-
if
:
'
$CI_MERGE_REQUEST_SOURCE_BRANCH
_NAME
'
# If neither of the first two match but the simple presence does, we set to "on_success" by default
```
If none of the provided rules match, the job will be set to
`when:never`
, and
...
...
doc/user/clusters/applications.md
View file @
bd1e1afd
...
...
@@ -109,7 +109,7 @@ NOTE: **Note:**
The
[
`runner/gitlab-runner`
](
https://gitlab.com/gitlab-org/charts/gitlab-runner
)
chart is used to install this application with a
[
`values.yaml`
](
https://gitlab.com/gitlab-org/gitlab/blob/master/vendor/runner/values.yaml
)
file.
file.
Customizing installation by modifying this file is not supported.
### Ingress
...
...
qa/qa/page/project/settings/main.rb
View file @
bd1e1afd
...
...
@@ -58,5 +58,3 @@ module QA
end
end
end
QA
::
Page
::
Project
::
Settings
::
Main
.
prepend_if_ee
(
'QA::EE::Page::Project::Settings::Main'
)
qa/qa/resource/repository/commit.rb
View file @
bd1e1afd
...
...
@@ -58,8 +58,10 @@ module QA
end
def
actions
@add_files
.
map
{
|
file
|
file
.
merge
({
action:
"create"
})
}
if
@add_files
@update_files
.
map
{
|
file
|
file
.
merge
({
action:
"update"
})
}
if
@update_files
pending_actions
=
[]
@add_files
.
map
{
|
file
|
pending_actions
<<
file
.
merge
({
action:
"create"
})
}
if
@add_files
@update_files
.
map
{
|
file
|
pending_actions
<<
file
.
merge
({
action:
"update"
})
}
if
@update_files
pending_actions
end
private
...
...
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