<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/views/projects/settings, branch docs/remove-cephfs-example</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Merge branch 'master' into 'master'</title>
<updated>2019-08-01T08:57:07+00:00</updated>
<author>
<name>Achilleas Pipinellis</name>
<email>axil@gitlab.com</email>
</author>
<published>2019-08-01T08:57:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4fd8e9810978d80d649bcb79c92e35625486a1e0'/>
<id>4fd8e9810978d80d649bcb79c92e35625486a1e0</id>
<content type='text'>
Update the python example regex to work with --coverage

See merge request gitlab-org/gitlab-ce!31018</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update the python example regex to work with --coverage

See merge request gitlab-org/gitlab-ce!31018</pre>
</div>
</content>
</entry>
<entry>
<title>Add Job specific variables</title>
<updated>2019-07-29T07:43:10+00:00</updated>
<author>
<name>Matija Čupić</name>
<email>matteeyah@gmail.com</email>
</author>
<published>2019-07-29T07:43:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a5aa40c5fe93dc3daba8a578f4c09c4e443fcbec'/>
<id>a5aa40c5fe93dc3daba8a578f4c09c4e443fcbec</id>
<content type='text'>
Adds Job specific variables to facilitate specifying variables when
running manual jobs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds Job specific variables to facilitate specifying variables when
running manual jobs.
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor elements used by ci_variable and ::CICD</title>
<updated>2019-07-26T18:07:51+00:00</updated>
<author>
<name>Dan Davison</name>
<email>ddavison@gitlab.com</email>
</author>
<published>2019-07-26T18:07:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9bf08867ddece5fec67807631de7d4fb9a0bd6a6'/>
<id>9bf08867ddece5fec67807631de7d4fb9a0bd6a6</id>
<content type='text'>
Many elements defined in the QA framework in ci_variable.rb
call elements and methods that are not framework specific.

Fix these issues, as well as use data-qa-selector s
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Many elements defined in the QA framework in ci_variable.rb
call elements and methods that are not framework specific.

Fix these issues, as well as use data-qa-selector s
</pre>
</div>
</content>
</entry>
<entry>
<title>The python regex fails if you add branch coverage to the report (different number of digit blocks). Don't think there's any downside in handling any number of digit blocks so long as it starts with TOTAL and ends with a percentage.</title>
<updated>2019-07-22T14:32:23+00:00</updated>
<author>
<name>Paul Becotte</name>
<email>pjbecotte@gmail.com</email>
</author>
<published>2019-07-22T14:32:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c91ef6cd6d1b2332b18c15017b2a8dc13cc1a391'/>
<id>c91ef6cd6d1b2332b18c15017b2a8dc13cc1a391</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct link to external_dashboard doc</title>
<updated>2019-07-11T13:39:11+00:00</updated>
<author>
<name>Reuben Pereira</name>
<email>rpereira@gitlab.com</email>
</author>
<published>2019-07-11T13:39:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b08ba93fb25f3027432204fae0ec43522d218682'/>
<id>b08ba93fb25f3027432204fae0ec43522d218682</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add project level git depth setting</title>
<updated>2019-06-06T08:21:18+00:00</updated>
<author>
<name>Krasimir Angelov</name>
<email>kangelov@gitlab.com</email>
</author>
<published>2019-05-30T06:40:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ad9ae16d8a44dd2523bd6e6109db9fe2da45d3a5'/>
<id>ad9ae16d8a44dd2523bd6e6109db9fe2da45d3a5</id>
<content type='text'>
Introduce default_git_depth in project's CI/CD settings and set it to
50. Use it if there is no GIT_DEPTH variable specified. Apply this
default only to newly created projects and keep it nil for old ones
in order to not break pipelines that rely on non-shallow clones.

default_git_depth can be updated from CI/CD Settings in the UI, must be
either nil or integer between 0 and 1000 (incl).

Inherit default_git_depth from the origin project when forking projects.

MR pipelines are run on a MR ref (refs/merge-requests/:iid/merge) and it
contains unique commit (i.e. merge commit) which doesn't exist in the
other branch/tags refs. We need to add it cause otherwise it may break
pipelines for old projects that have already enabled Pipelines for merge
results and have git depth 0.

Document new default_git_depth project CI/CD setting
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Introduce default_git_depth in project's CI/CD settings and set it to
50. Use it if there is no GIT_DEPTH variable specified. Apply this
default only to newly created projects and keep it nil for old ones
in order to not break pipelines that rely on non-shallow clones.

default_git_depth can be updated from CI/CD Settings in the UI, must be
either nil or integer between 0 and 1000 (incl).

Inherit default_git_depth from the origin project when forking projects.

MR pipelines are run on a MR ref (refs/merge-requests/:iid/merge) and it
contains unique commit (i.e. merge commit) which doesn't exist in the
other branch/tags refs. We need to add it cause otherwise it may break
pipelines for old projects that have already enabled Pipelines for merge
results and have git depth 0.

Document new default_git_depth project CI/CD setting
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle external dashboard form submission</title>
<updated>2019-06-04T17:55:52+00:00</updated>
<author>
<name>Adriel Santiago</name>
<email>asantiago@gitlab.com</email>
</author>
<published>2019-06-04T17:55:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=57f6be00bcaa20287c696d67128655738d740b8b'/>
<id>57f6be00bcaa20287c696d67128655738d740b8b</id>
<content type='text'>
Connect frontend UI with backend api for external dashboard link
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Connect frontend UI with backend api for external dashboard link
</pre>
</div>
</content>
</entry>
<entry>
<title>Unified repository/show.html for CE and EE</title>
<updated>2019-05-29T14:47:31+00:00</updated>
<author>
<name>Denys Mishunov</name>
<email>dmishunov@gitlab.com</email>
</author>
<published>2019-05-29T11:13:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c56906d5dca63c23f2ccbc9f337dd7be1b4cae45'/>
<id>c56906d5dca63c23f2ccbc9f337dd7be1b4cae45</id>
<content type='text'>
Corresponding partials containing differences have been added to
corresponding folder.

Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/6104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Corresponding partials containing differences have been added to
corresponding folder.

Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/6104
</pre>
</div>
</content>
</entry>
<entry>
<title>Make external_dashboard_url available to frontend</title>
<updated>2019-05-29T13:36:36+00:00</updated>
<author>
<name>Reuben Pereira</name>
<email>rpereira@gitlab.com</email>
</author>
<published>2019-05-29T13:36:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5c088584eccf89f389866d37a1c18400c002eaf8'/>
<id>5c088584eccf89f389866d37a1c18400c002eaf8</id>
<content type='text'>
- On Operations settings page
- On Metrics dashboard page
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- On Operations settings page
- On Metrics dashboard page
</pre>
</div>
</content>
</entry>
<entry>
<title>Add expand/collapse button</title>
<updated>2019-05-27T07:35:07+00:00</updated>
<author>
<name>Adriel Santiago</name>
<email>asantiago@gitlab.com</email>
</author>
<published>2019-05-27T07:35:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a9ddd9498e208d8830f47ba2361691c416e41035'/>
<id>a9ddd9498e208d8830f47ba2361691c416e41035</id>
<content type='text'>
Add ability to expand/collapse error tracking settings
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add ability to expand/collapse error tracking settings
</pre>
</div>
</content>
</entry>
</feed>
