From 44ebf0d3a40c1540140ba5dad6d4b6b4fd9bd4d7 Mon Sep 17 00:00:00 2001 From: rellis-of-rhindleton Date: Fri, 27 Aug 2021 10:48:04 -0400 Subject: [PATCH] Update self-hosted-runner-labels-runs-on.md Minor rephrasing to make it clear that `self-hosted` must be listed first. --- .../github-actions/self-hosted-runner-labels-runs-on.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/github-actions/self-hosted-runner-labels-runs-on.md b/data/reusables/github-actions/self-hosted-runner-labels-runs-on.md index 76374311c4..670cda5b20 100644 --- a/data/reusables/github-actions/self-hosted-runner-labels-runs-on.md +++ b/data/reusables/github-actions/self-hosted-runner-labels-runs-on.md @@ -1,3 +1,3 @@ To specify a self-hosted runner for your job, configure `runs-on` in your workflow file with self-hosted runner labels. -All self-hosted runners have the `self-hosted` label, and you can select any self-hosted runner by providing only the `self-hosted` label. Alternatively, you can use `self-hosted` in an array with additional labels, such as labels for a specific operating system or system architecture, to select only the runner types you specify. +All self-hosted runners have the `self-hosted` label. Using only this label will select any self-hosted runner. To select runners that meet certain criteria, such as operating system or architecture, provide an array of labels that begins with `self-hosted` (this must be listed first) and then includes additional labels as needed.