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
ac8913be
Commit
ac8913be
authored
Feb 10, 2020
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
3edbef8a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
1 deletion
+41
-1
doc/.linting/vale/styles/gitlab/LatinTerms.yml
doc/.linting/vale/styles/gitlab/LatinTerms.yml
+39
-0
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+2
-1
No files found.
doc/.linting/vale/styles/gitlab/LatinTerms.yml
0 → 100644
View file @
ac8913be
---
# `extends` indicates the Vale extension point being used.
# Full list of styles: https://errata-ai.github.io/vale/styles/
extends
:
substitution
# Substitution rules can display the matched and suggested strings in the
# message shown to the user. The first use of %s prints the suggested option,
# and the second use of %s displays what was found in the text.
message
:
Use "%s" instead of "%s," but consider rewriting the sentence.
# Should a result be flagged as a suggestion, warning, or error?
# Results that fall below the MinAlertLevel set in
# https://gitlab.com/gitlab-org/gitlab/blob/master/.vale.ini won't be shown.
level
:
warning
# Should a match be case-insensitive or case-sensitive?
# Acceptable values are 'true' or 'false'
ignorecase
:
true
# Should this rule be limited to a specific scope? If yes, uncomment the line.
# Possible scopes: https://errata-ai.github.io/vale/formats/#available-scopes
# scope: heading
# Should this rule ignore normal word boundaries, such as \b ?
# Acceptable values are 'true' or 'false'
nonword
:
true
# What is the source for this rule?
link
:
https://docs.gitlab.com/ee/development/documentation/styleguide.html#language
# The 'swap' section provides a list of values, one per line, in the form of
# $bad: $good
swap
:
e\.g\.
:
for example
e\. g\.
:
for example
i\.e\.
:
that is
i\. e\.
:
that is
etc\.
:
and so on
et cetera
:
and so on
doc/ci/yaml/README.md
View file @
ac8913be
...
...
@@ -1571,7 +1571,7 @@ allowing you to cache data between different jobs or even different branches.
The
`cache:key`
variable can use any of the
[
predefined variables
](
../variables/README.md
)
, and the default key, if not
set, is just literal
`default`
which means everything is shared between
each
set, is just literal
`default`
which means everything is shared between
pipelines and jobs by default, starting from GitLab 9.0.
NOTE:
**Note:**
...
...
@@ -1630,6 +1630,7 @@ use the new cache, instead of rebuilding the dependencies.
##### `cache:key:prefix`
> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/18986) in GitLab v12.5.
The
`prefix`
parameter adds extra functionality to
`key:files`
by allowing the key to
be composed of the given
`prefix`
combined with the SHA computed for
`cache:key:files`
.
For example, adding a
`prefix`
of
`test`
, will cause keys to look like:
`test-feef9576d21ee9b6a32e30c5c79d0a0ceb68d1e5`
.
...
...
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