From cb864639291162b3cc9be70069205a7b6bd152a8 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Fri, 5 Dec 2025 09:23:58 -0800 Subject: [PATCH] chore: Update workflows to reference `main` instead of `develop` --- .github/workflows/build.yml | 6 +++--- .github/workflows/pages.yml | 2 +- .github/workflows/test.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 41f96b40..9d88239d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ permissions: jobs: build_tip_of_tree_v12: - name: Build test (against tip-of-tree core develop) + name: Build test (against tip-of-tree core main) runs-on: ubuntu-latest steps: - name: Checkout experimentation plugin @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@v4 with: repository: 'google/blockly' - ref: 'develop' + ref: 'main' path: core-blockly - name: Use Node.js 20.x @@ -42,7 +42,7 @@ jobs: npm install cd .. - - name: Link latest Blockly develop + - name: Link latest Blockly main run: | cd core-blockly npm run package diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 3b70b9a0..8427c5e6 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -33,7 +33,7 @@ jobs: with: path: blockly repository: google/blockly - ref: develop + ref: main - name: Checkout add-screen-reader-support-experimental core Blockly uses: actions/checkout@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 711d2f61..ee984f8f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ permissions: jobs: webdriverio_tests_tip_of_tree_v12: - name: WebdriverIO tests (against tip-of-tree core develop) + name: WebdriverIO tests (against tip-of-tree core main) timeout-minutes: 10 runs-on: ${{ matrix.os }} @@ -33,7 +33,7 @@ jobs: uses: actions/checkout@v4 with: repository: 'google/blockly' - ref: 'develop' + ref: 'main' path: core-blockly - name: Use Node.js 20.x @@ -50,7 +50,7 @@ jobs: npm install cd .. - - name: Link latest Blockly develop + - name: Link latest Blockly main run: | cd core-blockly npm run package