From 0585f444f842792c604765784fa5f9ea2c21388b Mon Sep 17 00:00:00 2001 From: Simran Date: Tue, 20 Oct 2020 01:30:22 +0200 Subject: [PATCH] Actions: Add missing runs-on (managing complex workflows) Also fix indentation in another example --- .../actions/learn-github-actions/managing-complex-workflows.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/actions/learn-github-actions/managing-complex-workflows.md b/content/actions/learn-github-actions/managing-complex-workflows.md index 38e7e68e94cd..8207c51ec48e 100644 --- a/content/actions/learn-github-actions/managing-complex-workflows.md +++ b/content/actions/learn-github-actions/managing-complex-workflows.md @@ -49,6 +49,7 @@ jobs: - run: ./setup_server.sh build: needs: setup + runs-on: ubuntu-latest steps: - run: ./build_server.sh test: @@ -141,7 +142,7 @@ This example shows how a workflow can use labels to specify the required runner: ```yaml jobs: example-job: - runs-on: [self-hosted, linux, x64, gpu] + runs-on: [self-hosted, linux, x64, gpu] ``` For more information, see ["Using labels with self-hosted runners](/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners)."