From 9d58924a74c229c5b3216f6ac32ac70cec143137 Mon Sep 17 00:00:00 2001 From: Sid Date: Mon, 25 May 2026 10:41:26 +0530 Subject: [PATCH] chore: switch e2e to run using the self hosted ones when PR is in OSS --- .github/workflows/tests-macos.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests-macos.yml b/.github/workflows/tests-macos.yml index 9cdc6a421..3299464f1 100644 --- a/.github/workflows/tests-macos.yml +++ b/.github/workflows/tests-macos.yml @@ -53,10 +53,10 @@ jobs: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-e2e cancel-in-progress: true - runs-on: - - self-hosted - - macOS - - e2e + strategy: + matrix: + runner: ${{ github.repository == 'usebruno/bruno' && fromJson('["self-hosted", "macOS"]') || fromJson('["macos-latest"]') }} + runs-on: ${{ matrix.runner }} steps: - uses: actions/checkout@v6