From 55a8a484cd08a3c8c637b2c5271fcbc021662d55 Mon Sep 17 00:00:00 2001 From: anon6789 Date: Fri, 27 Oct 2023 15:43:48 +0200 Subject: [PATCH] docs(users): add missing comma in v4 API create runner examples The examples which show usage of new runner registration api endpoint are missing commas. This change adds the missing commas. --- docs/gl_objects/users.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/gl_objects/users.rst b/docs/gl_objects/users.rst index a6278d231..674623ad1 100644 --- a/docs/gl_objects/users.rst +++ b/docs/gl_objects/users.rst @@ -483,7 +483,7 @@ Create an instance-wide runner:: "description": "My brand new runner", "paused": True, "locked": False, - "run_untagged": True + "run_untagged": True, "tag_list": ["linux", "docker", "testing"], "access_level": "not_protected" }) @@ -496,7 +496,7 @@ Create a group runner:: "description": "My brand new runner", "paused": True, "locked": False, - "run_untagged": True + "run_untagged": True, "tag_list": ["linux", "docker", "testing"], "access_level": "not_protected" }) @@ -509,7 +509,7 @@ Create a project runner:: "description": "My brand new runner", "paused": True, "locked": False, - "run_untagged": True + "run_untagged": True, "tag_list": ["linux", "docker", "testing"], "access_level": "not_protected" }) \ No newline at end of file