mirror of
https://github.com/google/blockly.git
synced 2026-01-10 02:17:09 +01:00
Merge branch 'develop' into merge-develop-into-experimental-branch
This commit is contained in:
9
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
9
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
@@ -31,6 +31,15 @@ body:
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
- type: textarea
|
||||
id: priority
|
||||
attributes:
|
||||
label: Priority
|
||||
description: Please help us understand the priority for this issue. The more information provided will help the team better assess urgency and complexity.
|
||||
placeholder: |
|
||||
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?
|
||||
Impact: Which part of the service is impacted? How many users are experencing this issue?
|
||||
Is there a known workaround for this issue? If so, please describe. If not, does it prevent a user from doing a core task?
|
||||
- type: textarea
|
||||
id: stack-trace
|
||||
attributes:
|
||||
|
||||
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
@@ -20,6 +20,10 @@ updates:
|
||||
target-branch: 'develop'
|
||||
schedule:
|
||||
interval: 'weekly'
|
||||
ignore:
|
||||
# See notes in welcome_new_contributors.yml for details on this.
|
||||
- dependency-name: 'actions/first-interaction'
|
||||
versions: ['*']
|
||||
commit-message:
|
||||
prefix: 'chore(deps)'
|
||||
labels:
|
||||
|
||||
6
.github/workflows/appengine_deploy.yml
vendored
6
.github/workflows/appengine_deploy.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
||||
npm run prepareDemos
|
||||
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v5
|
||||
with:
|
||||
name: appengine_files
|
||||
path: _deploy/
|
||||
@@ -36,13 +36,13 @@ jobs:
|
||||
needs: prepare
|
||||
steps:
|
||||
- name: Download prepared files
|
||||
uses: actions/download-artifact@v5
|
||||
uses: actions/download-artifact@v6
|
||||
with:
|
||||
name: appengine_files
|
||||
path: _deploy/
|
||||
|
||||
- name: Deploy to App Engine
|
||||
uses: google-github-actions/deploy-appengine@v2.1.7
|
||||
uses: google-github-actions/deploy-appengine@v3.0.1
|
||||
# For parameters see:
|
||||
# https://github.com/google-github-actions/deploy-appengine#inputs
|
||||
with:
|
||||
|
||||
2
.github/workflows/assign_reviewers.yml
vendored
2
.github/workflows/assign_reviewers.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Assign requested reviewer
|
||||
uses: actions/github-script@v7
|
||||
uses: actions/github-script@v8
|
||||
with:
|
||||
script: |
|
||||
try {
|
||||
|
||||
2
.github/workflows/browser_test.yml
vendored
2
.github/workflows/browser_test.yml
vendored
@@ -36,7 +36,7 @@ jobs:
|
||||
ssh://git@github.com/
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
uses: actions/setup-node@v5
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
|
||||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@@ -33,7 +33,7 @@ jobs:
|
||||
ssh://git@github.com/
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
uses: actions/setup-node@v5
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
@@ -57,7 +57,7 @@ jobs:
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- name: Use Node.js 20.x
|
||||
uses: actions/setup-node@v4
|
||||
uses: actions/setup-node@v5
|
||||
with:
|
||||
node-version: 20.x
|
||||
|
||||
@@ -74,7 +74,7 @@ jobs:
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- name: Use Node.js 20.x
|
||||
uses: actions/setup-node@v4
|
||||
uses: actions/setup-node@v5
|
||||
with:
|
||||
node-version: 20.x
|
||||
|
||||
|
||||
24
.github/workflows/conventional-label.yml
vendored
24
.github/workflows/conventional-label.yml
vendored
@@ -3,8 +3,30 @@ on:
|
||||
types:
|
||||
- opened
|
||||
- edited
|
||||
name: conventional-release-labels
|
||||
name: commit lint & label
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
PR_TITLE: ${{ github.event.pull_request.title }}
|
||||
permissions:
|
||||
pull-requests: read
|
||||
contents: read
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Setup node
|
||||
uses: actions/setup-node@v5
|
||||
with:
|
||||
node-version: lts/*
|
||||
cache: npm
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Check PR title
|
||||
id: check-pr-title
|
||||
run: echo "$PR_TITLE" | npx commitlint --verbose
|
||||
|
||||
label:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
|
||||
2
.github/workflows/keyboard_plugin_test.yml
vendored
2
.github/workflows/keyboard_plugin_test.yml
vendored
@@ -37,7 +37,7 @@ jobs:
|
||||
path: blockly-keyboard-experimentation
|
||||
|
||||
- name: Use Node.js 20.x
|
||||
uses: actions/setup-node@v4
|
||||
uses: actions/setup-node@v5
|
||||
with:
|
||||
node-version: 20.x
|
||||
|
||||
|
||||
2
.github/workflows/tag_module_cleanup.yml
vendored
2
.github/workflows/tag_module_cleanup.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
||||
# Add the type: cleanup label
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/github-script@v7
|
||||
- uses: actions/github-script@v8
|
||||
with:
|
||||
script: |
|
||||
// Note that pull requests are considered issues and "shared"
|
||||
|
||||
@@ -9,7 +9,12 @@ jobs:
|
||||
permissions:
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: actions/first-interaction@v3
|
||||
# NOTE TO DEVELOPER: Per #9447 this is pinned to v1.3.0 and all updates
|
||||
# have been disabled for it. There are some largely incompatibilities on
|
||||
# v2 and v3 of the action that, without resolution, will break the first
|
||||
# interaction experience for new contributors. This dependency should not
|
||||
# be upgraded until those issues are resolved.
|
||||
- uses: actions/first-interaction@v1.3.0
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
pr-message: >
|
||||
|
||||
Reference in New Issue
Block a user