From 6a899d35a14cfc35b4a2ca2985a059a7f54fd6c9 Mon Sep 17 00:00:00 2001 From: paolino Date: Wed, 13 Dec 2023 18:44:57 +0000 Subject: [PATCH] Update windows.yml default branch --- .github/workflows/windows.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9578fcb80e5..472e81d00e2 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -8,7 +8,7 @@ on: inputs: branch: description: 'Run tests against branch' - default: 'master' + default: 'rc-latest' status: description: 'Run tests against status (use `any` as wildcard)' default: 'passed' @@ -27,11 +27,14 @@ jobs: env: BUILDKITE_API_TOKEN: ${{ secrets.BUILDKITE_TOKEN_READ_BUILDS_ARTIFACTS }} WORK_DIR: ./test/e2e - BRANCH: ${{ github.event.inputs.branch || 'master' }} + BRANCH: ${{ github.event.inputs.branch || 'rc-latest' }} runs-on: windows-2022 name: Download testing bundle steps: - uses: actions/checkout@v3.2.0 + with: + ref: ${{ env.BRANCH }} + - name: Set up Ruby uses: ruby/setup-ruby@v1.127.0 with: