Skip to content

Commit

Permalink
docs(users): add missing comma in v4 API create runner examples
Browse files Browse the repository at this point in the history
The examples which show usage of new runner registration api endpoint
are missing commas. This change adds the missing commas.
  • Loading branch information
anon6789 authored and nejch committed Oct 30, 2023
1 parent 32954fb commit b1b2edf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/gl_objects/users.rst
Expand Up @@ -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"
})
Expand All @@ -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"
})
Expand All @@ -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"
})

0 comments on commit b1b2edf

Please sign in to comment.