Documentation fix for access_level parameter of gitlab_runner (#2788)

* * Documentation fix for access_level parameter of gitlab_runner

Signed-off-by: Alina Buzachis <abuzachis@redhat.com>

* Address reviewer's comments

Signed-off-by: Alina Buzachis <abuzachis@redhat.com>
pull/2793/head
Alina Buzachis 2021-06-13 08:25:50 +02:00 committed by GitHub
parent 4b37b1bca6
commit 343339655d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -77,7 +77,9 @@ options:
type: bool
access_level:
description:
- Determines if a runner can pick up jobs from protected branches.
- Determines if a runner can pick up jobs only from protected branches.
- If set to C(ref_protected), runner can pick up jobs only from protected branches.
- If set to C(not_protected), runner can pick up jobs from both protected and unprotected branches.
required: False
default: ref_protected
choices: ["ref_protected", "not_protected"]