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
d0341bc3
Commit
d0341bc3
authored
Jul 21, 2016
by
Achilleas Pipinellis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mention manual actions section in when clause docs
parent
fa8d3ac8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+6
-4
No files found.
doc/ci/yaml/README.md
View file @
d0341bc3
...
...
@@ -485,7 +485,8 @@ failure.
1.
`on_failure`
- execute build only when at least one build from prior stages
fails.
1.
`always`
- execute build regardless of the status of builds from prior stages.
1.
`manual`
- execute build manually.
1.
`manual`
- execute build manually (added in GitLab 8.10). Read about
[
manual actions
](
#manual-actions
)
below.
For example:
...
...
@@ -528,9 +529,10 @@ cleanup_job:
The above script will:
1.
Execute
`cleanup_build_job`
only when
`build_job`
fails
2.
Always execute
`cleanup_job`
as the last step in pipeline
3.
Allow you to manually execute
`deploy_job`
from GitLab
1.
Execute
`cleanup_build_job`
only when
`build_job`
fails.
2.
Always execute
`cleanup_job`
as the last step in pipeline regardless of
success or failure.
3.
Allow you to manually execute
`deploy_job`
from GitLab's UI.
#### Manual actions
...
...
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