From 92041c177cccc6ad8fa7ddb12f91dd48d0258d4e Mon Sep 17 00:00:00 2001 From: Sourcegraph Date: Fri, 19 Jan 2024 09:47:11 +0000 Subject: [PATCH] ci: use only a single label for Github Actions runners The next version of Action Runner Controller will no longer support having multiple labels on runners, this PR removes all additional labels from workflows. --- .github/workflows/pre-commit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 6ce18e0..30d0701 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -12,7 +12,7 @@ on: jobs: pre-commit: if: ${{ github.server_url == 'https://github.cds.internal.unity3d.com' }} - runs-on: [self-hosted, Linux, X64] + runs-on: unity-linux-runner steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 @@ -37,7 +37,7 @@ jobs: validate-meta-files: # Only run on GitHub Enterprise if: ${{ github.server_url == 'https://github.cds.internal.unity3d.com' }} - runs-on: [self-hosted, Linux, X64] + runs-on: unity-linux-runner steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2