Skip to content

Commit b696bf4

Browse files
authored
Merge pull request #16687 from ethereum/staging
Deploy v10.18.0
2 parents 49c09fc + f6d84dc commit b696bf4

File tree

136 files changed

+3461
-261
lines changed

Some content is hidden

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

136 files changed

+3461
-261
lines changed

.all-contributorsrc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13835,6 +13835,24 @@
1383513835
"contributions": [
1383613836
"maintenance"
1383713837
]
13838+
},
13839+
{
13840+
"login": "mnelsonBT",
13841+
"name": "mnelsonBT",
13842+
"avatar_url": "https://avatars.githubusercontent.com/u/74370515?v=4",
13843+
"profile": "https://github.com/mnelsonBT",
13844+
"contributions": [
13845+
"content"
13846+
]
13847+
},
13848+
{
13849+
"login": "agualis",
13850+
"name": "Alberto Gualis",
13851+
"avatar_url": "https://avatars.githubusercontent.com/u/1316240?v=4",
13852+
"profile": "https://medium.com/@gualison",
13853+
"contributions": [
13854+
"code"
13855+
]
1383813856
}
1383913857
],
1384013858
"contributorsPerLine": 7,

.github/workflows/chromatic.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ jobs:
2929

3030
- name: Setup pnpm
3131
uses: pnpm/action-setup@v4
32-
with:
33-
version: 10
3432
- name: Setup Node.js
3533
uses: actions/setup-node@v6
3634
with:
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Import Crowdin AI Translations
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
file_limit:
7+
description: "Number of files to process (default: 100, use 1-10 for testing)"
8+
required: false
9+
default: "100"
10+
type: string
11+
target_languages:
12+
description: "Comma-separated Crowdin language codes (default: es-EM)"
13+
required: false
14+
default: "es-EM"
15+
type: string
16+
base_branch:
17+
description: "Base branch to create PR against (default: dev)"
18+
required: false
19+
default: "dev"
20+
type: string
21+
22+
jobs:
23+
import_translations:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Check out code
27+
uses: actions/checkout@v5
28+
29+
- name: Setup pnpm
30+
uses: pnpm/action-setup@v4
31+
32+
- name: Set up Node.js
33+
uses: actions/setup-node@v6
34+
with:
35+
node-version: 20
36+
cache: "pnpm"
37+
38+
- name: Install dependencies
39+
run: pnpm install
40+
41+
- name: Run Crowdin AI translation import
42+
run: npx ts-node -O '{"module":"commonjs"}' ./src/scripts/i18n/main.ts
43+
env:
44+
I18N_CROWDIN_API_KEY: ${{ secrets.CROWDIN_API_KEY }}
45+
I18N_GITHUB_API_KEY: ${{ secrets.I18N_GITHUB_TOKEN }}
46+
FILE_LIMIT: ${{ github.event.inputs.file_limit }}
47+
TARGET_LANGUAGES: ${{ github.event.inputs.target_languages }}
48+
BASE_BRANCH: ${{ github.event.inputs.base_branch }}
49+
GITHUB_REPOSITORY: ${{ github.repository }}

.github/workflows/crowdin-ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020

2121
- name: Setup pnpm
2222
uses: pnpm/action-setup@v4
23-
with:
24-
version: 10
2523

2624
- name: Set up Node.js
2725
uses: actions/setup-node@v6

.github/workflows/generate-review-report.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212

1313
- name: Setup pnpm
1414
uses: pnpm/action-setup@v4
15-
with:
16-
version: 10
1715

1816
- name: Set up Node.js
1917
uses: actions/setup-node@v6

.github/workflows/get-crowdin-contributors.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414

1515
- name: Setup pnpm
1616
uses: pnpm/action-setup@v4
17-
with:
18-
version: 10
1917

2018
- name: Set up Node.js
2119
uses: actions/setup-node@v6

.github/workflows/get-leaderboard-reports.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414

1515
- name: Setup pnpm
1616
uses: pnpm/action-setup@v4
17-
with:
18-
version: 10
1917

2018
- name: Set up Node.js
2119
uses: actions/setup-node@v6

.github/workflows/get-translation-progress.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414

1515
- name: Setup pnpm
1616
uses: pnpm/action-setup@v4
17-
with:
18-
version: 10
1917

2018
- name: Set up Node.js
2119
uses: actions/setup-node@v6

.github/workflows/import-community-events.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414

1515
- name: Setup pnpm
1616
uses: pnpm/action-setup@v4
17-
with:
18-
version: 10
1917

2018
- name: Set up Node.js
2119
uses: actions/setup-node@v6

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
run: pnpm install
6464

6565
- name: Download Playwright test results
66-
uses: actions/download-artifact@v5
66+
uses: actions/download-artifact@v6
6767
with:
6868
name: playwright-report
6969
path: ./tests/e2e/__results__

0 commit comments

Comments
 (0)