diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-10-03 06:06:07 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-10-03 06:06:07 +0000 |
commit | ed58c351374814027fbb2383ddecb9fa38de0c57 (patch) | |
tree | 69ac788357c4afc02fea654b42fb3797b13cb5ae /doc/user/project | |
parent | 427b23c12718bea233931431e7d9307881a960c0 (diff) | |
download | gitlab-ce-ed58c351374814027fbb2383ddecb9fa38de0c57.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/user/project')
-rw-r--r-- | doc/user/project/pipelines/settings.md | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/doc/user/project/pipelines/settings.md b/doc/user/project/pipelines/settings.md index a901da978f0..74f48d24ba3 100644 --- a/doc/user/project/pipelines/settings.md +++ b/doc/user/project/pipelines/settings.md @@ -122,30 +122,33 @@ lein cloverage | perl -pe 's/\e\[?.*?[\@-~]//g' ## Visibility of pipelines -Access to pipelines and job details (including output of logs and artifacts) -is checked against your current user access level and the **Public pipelines** -project setting under your project's **Settings > CI/CD > General pipelines settings**. +Pipeline visibility is determined by: + +- Your current [user access level](../../permissions.md). +- The **Public pipelines** project setting under your project's **Settings > CI/CD > General pipelines**. + +This also determines the visibility of these related features: + +- Job output logs +- Job artifacts +- The [pipeline security dashboard](../../application_security/security_dashboard/index.md#pipeline-security-dashboard) **(ULTIMATE)** If **Public pipelines** is enabled (default): -- For **public** projects, anyone can view the pipelines and access the job details - (output logs and artifacts). +- For **public** projects, anyone can view the pipelines and related features. - For **internal** projects, any logged in user can view the pipelines - and access the job details - (output logs and artifacts). -- For **private** projects, any member (guest or higher) can view the pipelines - and access the job details - (output logs and artifacts). + and related features. +- For **private** projects, any project member (guest or higher) can view the pipelines + and related features. If **Public pipelines** is disabled: - For **public** projects, anyone can view the pipelines, but only members - (reporter or higher) can access the job details (output logs and artifacts). + (reporter or higher) can access the related features. - For **internal** projects, any logged in user can view the pipelines. - However, only members (reporter or higher) can access the job details (output logs - and artifacts). -- For **private** projects, only members (reporter or higher) - can view the pipelines and access the job details (output logs and artifacts). + However, only members (reporter or higher) can access the job related features. +- For **private** projects, only project members (reporter or higher) + can view the pipelines or access the related features. ## Auto-cancel pending pipelines |