From 89c92531df3d63792503823aa862f8cfa80e5e3e Mon Sep 17 00:00:00 2001 From: Andrew Liaw <43424755+yhaliaw@users.noreply.github.com> Date: Tue, 27 Jun 2023 11:09:42 +0800 Subject: [PATCH] Change name of runner to test --- .github/workflows/check_test.yaml | 2 +- .github/workflows/manual_test.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_test.yaml b/.github/workflows/check_test.yaml index a1aadd253..221ce3148 100644 --- a/.github/workflows/check_test.yaml +++ b/.github/workflows/check_test.yaml @@ -5,6 +5,6 @@ on: jobs: hello-world: - runs-on: [self-hosted, test-runner] + runs-on: [self-hosted, manual-runner] steps: - run: echo "hello world" diff --git a/.github/workflows/manual_test.yaml b/.github/workflows/manual_test.yaml index 0cdbc5bf8..c8532bb73 100644 --- a/.github/workflows/manual_test.yaml +++ b/.github/workflows/manual_test.yaml @@ -8,7 +8,7 @@ on: jobs: e2e-test: name: end to end test - runs-on: [self-hosted, linux, x64, runner] + runs-on: [self-hosted, linux, x64, manual-runner] steps: - name: Echo hello world run: echo "hello world" @@ -40,7 +40,7 @@ jobs: # Test the dependencies in one job to avoid using too many runners at once. name: dependency test needs: e2e-test - runs-on: [self-hosted, linux, x64, runner] + runs-on: [self-hosted, linux, x64, manual-runner] steps: - name: Docker version run: docker version