Skip to content

Commit 74a36d7

Browse files
authored
Merge pull request #9459 from BenHenning/merge-develop-into-experimental-branch
chore: Merge develop into experimental branch (experimental)
2 parents 1f6dd0e + d0a79fa commit 74a36d7

File tree

91 files changed

+1399
-3154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+1399
-3154
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@ body:
3131
1.
3232
2.
3333
3.
34+
- type: textarea
35+
id: priority
36+
attributes:
37+
label: Priority
38+
description: Please help us understand the priority for this issue. The more information provided will help the team better assess urgency and complexity.
39+
placeholder: |
40+
Work effort: Is this a quick fix or will it require a significant amount of work? Is there a clear path to a solution or is further investigation required?
41+
Impact: Which part of the service is impacted? How many users are experencing this issue?
42+
Is there a known workaround for this issue? If so, please describe. If not, does it prevent a user from doing a core task?
3443
- type: textarea
3544
id: stack-trace
3645
attributes:

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ updates:
2020
target-branch: 'develop'
2121
schedule:
2222
interval: 'weekly'
23+
ignore:
24+
# See notes in welcome_new_contributors.yml for details on this.
25+
- dependency-name: 'actions/first-interaction'
26+
versions: ['*']
2327
commit-message:
2428
prefix: 'chore(deps)'
2529
labels:

.github/workflows/appengine_deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
npm run prepareDemos
2525
2626
- name: Upload
27-
uses: actions/upload-artifact@v4
27+
uses: actions/upload-artifact@v5
2828
with:
2929
name: appengine_files
3030
path: _deploy/
@@ -36,13 +36,13 @@ jobs:
3636
needs: prepare
3737
steps:
3838
- name: Download prepared files
39-
uses: actions/download-artifact@v5
39+
uses: actions/download-artifact@v6
4040
with:
4141
name: appengine_files
4242
path: _deploy/
4343

4444
- name: Deploy to App Engine
45-
uses: google-github-actions/deploy-appengine@v2.1.7
45+
uses: google-github-actions/deploy-appengine@v3.0.1
4646
# For parameters see:
4747
# https://github.com/google-github-actions/deploy-appengine#inputs
4848
with:

.github/workflows/assign_reviewers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
pull-requests: write
2020
steps:
2121
- name: Assign requested reviewer
22-
uses: actions/github-script@v7
22+
uses: actions/github-script@v8
2323
with:
2424
script: |
2525
try {

.github/workflows/browser_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
ssh://git@github.com/
3737
3838
- name: Use Node.js ${{ matrix.node-version }}
39-
uses: actions/setup-node@v4
39+
uses: actions/setup-node@v5
4040
with:
4141
node-version: ${{ matrix.node-version }}
4242

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
ssh://git@github.com/
3434
3535
- name: Use Node.js ${{ matrix.node-version }}
36-
uses: actions/setup-node@v4
36+
uses: actions/setup-node@v5
3737
with:
3838
node-version: ${{ matrix.node-version }}
3939

@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v5
5858

5959
- name: Use Node.js 20.x
60-
uses: actions/setup-node@v4
60+
uses: actions/setup-node@v5
6161
with:
6262
node-version: 20.x
6363

@@ -74,7 +74,7 @@ jobs:
7474
- uses: actions/checkout@v5
7575

7676
- name: Use Node.js 20.x
77-
uses: actions/setup-node@v4
77+
uses: actions/setup-node@v5
7878
with:
7979
node-version: 20.x
8080

.github/workflows/conventional-label.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,30 @@ on:
33
types:
44
- opened
55
- edited
6-
name: conventional-release-labels
6+
name: commit lint & label
77
jobs:
8+
lint:
9+
runs-on: ubuntu-latest
10+
env:
11+
PR_TITLE: ${{ github.event.pull_request.title }}
12+
permissions:
13+
pull-requests: read
14+
contents: read
15+
steps:
16+
- uses: actions/checkout@v5
17+
with:
18+
fetch-depth: 0
19+
- name: Setup node
20+
uses: actions/setup-node@v5
21+
with:
22+
node-version: lts/*
23+
cache: npm
24+
- name: Install dependencies
25+
run: npm ci
26+
- name: Check PR title
27+
id: check-pr-title
28+
run: echo "$PR_TITLE" | npx commitlint --verbose
29+
830
label:
931
runs-on: ubuntu-latest
1032
permissions:

.github/workflows/keyboard_plugin_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
path: blockly-keyboard-experimentation
3838

3939
- name: Use Node.js 20.x
40-
uses: actions/setup-node@v4
40+
uses: actions/setup-node@v5
4141
with:
4242
node-version: 20.x
4343

.github/workflows/tag_module_cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# Add the type: cleanup label
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/github-script@v7
18+
- uses: actions/github-script@v8
1919
with:
2020
script: |
2121
// Note that pull requests are considered issues and "shared"

.github/workflows/welcome_new_contributors.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ jobs:
99
permissions:
1010
pull-requests: write
1111
steps:
12-
- uses: actions/first-interaction@v3
12+
# NOTE TO DEVELOPER: Per #9447 this is pinned to v1.3.0 and all updates
13+
# have been disabled for it. There are some largely incompatibilities on
14+
# v2 and v3 of the action that, without resolution, will break the first
15+
# interaction experience for new contributors. This dependency should not
16+
# be upgraded until those issues are resolved.
17+
- uses: actions/first-interaction@v1.3.0
1318
with:
1419
repo-token: ${{ secrets.GITHUB_TOKEN }}
1520
pr-message: >

0 commit comments

Comments
 (0)