From cc28aa8513a77b22d43a1757671f4fc69f7bcc03 Mon Sep 17 00:00:00 2001 From: Lucas Costi Date: Tue, 4 Oct 2022 11:14:12 +1000 Subject: [PATCH] Updated larger runner doc for non-admin users Co-authored-by: Dimitrios Philliou --- .../using-github-hosted-runners/using-larger-runners.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/actions/using-github-hosted-runners/using-larger-runners.md b/content/actions/using-github-hosted-runners/using-larger-runners.md index 17fb1a7a0f5d..5d941f42f36d 100644 --- a/content/actions/using-github-hosted-runners/using-larger-runners.md +++ b/content/actions/using-github-hosted-runners/using-larger-runners.md @@ -87,7 +87,7 @@ You can add a {% data variables.actions.hosted_runner %} to an organization, whe ## Running jobs on your runner -Once your runner type has been been defined, you can update your workflows to send jobs to the runner instances for processing. In this example, a runner group is populated with Ubuntu 16-core runners, which have been assigned the label `ubuntu-20.04-16core`. If you have a runner matching this label, the `check-bats-version` job then uses the `runs-on` key to target that runner whenever the job is run: +Once your runner type has been defined, you can update your workflow YAML files to send jobs to your newly created runner instances for processing. In this example, a runner group is populated with Ubuntu 16-core runners, which have been assigned the label `ubuntu-20.04-16core`. If you have a runner matching this label, the `check-bats-version` job then uses the `runs-on` key to target that runner whenever the job is run: ```yaml name: learn-github-actions @@ -104,6 +104,8 @@ jobs: - run: bats -v ``` +To find out which runners are enabled for your repository and organization, you must contact your organization admin. Your organization admin can create new runners and runner groups, as well as configure permissions to specify which repositories can access a runner group. + ## Managing access to your runners {% note %}