From 1643b452e48a1ff847d315e536b6a3079c42d8f0 Mon Sep 17 00:00:00 2001 From: Andrew Liaw <43424755+yhaliaw@users.noreply.github.com> Date: Wed, 28 Jun 2023 10:07:15 +0800 Subject: [PATCH] Trigger self-hosted runner on operator workflow test --- .github/workflows/check_test.yaml | 4 ++-- .github/workflows/manual_test.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_test.yaml b/.github/workflows/check_test.yaml index 791d740f1..fad637765 100644 --- a/.github/workflows/check_test.yaml +++ b/.github/workflows/check_test.yaml @@ -1,10 +1,10 @@ name: hello-world on: - pull_request: + # pull_request: jobs: disk-io: runs-on: [self-hosted, manual-runner] steps: - - run: touch test && dd if=/dev/zero of=test bs=1M count=8192 + - run: touch test && dd if=/dev/zero of=test bs=1M count=8192 || echo "Failed successfully" diff --git a/.github/workflows/manual_test.yaml b/.github/workflows/manual_test.yaml index c8532bb73..db9e31912 100644 --- a/.github/workflows/manual_test.yaml +++ b/.github/workflows/manual_test.yaml @@ -1,7 +1,7 @@ name: Manual test on: - pull_request: + # pull_request: workflow_call: workflow_dispatch: