Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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
Expand All @@ -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
Expand Down
Loading