From 271e3f28756f12683a10836532e64c0fc7ddf7e5 Mon Sep 17 00:00:00 2001 From: Samuel Burnham <45365069+samuelburnham@users.noreply.github.com> Date: Fri, 23 Aug 2024 10:21:53 -0400 Subject: [PATCH] Test Warpbuild custom runner --- .github/workflows/warp-custom.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/warp-custom.yml diff --git a/.github/workflows/warp-custom.yml b/.github/workflows/warp-custom.yml new file mode 100644 index 0000000..95c9742 --- /dev/null +++ b/.github/workflows/warp-custom.yml @@ -0,0 +1,19 @@ +name: Custom Warp test + +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + branches: [main] + merge_group: + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + run: + runs-on: warp-custom-test-1 + steps: + - uses: actions/checkout@v4 + - run: | + echo "I'm a custom Warpbuild runner"