瀏覽代碼

fix: resolve i18n workflow permissions and naming issues (#23494)

tags/1.7.2
lyzno1 2 月之前
父節點
當前提交
c95761f4e6
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 7 行新增2 行删除
  1. 7
    2
      .github/workflows/translate-i18n-base-on-english.yml

+ 7
- 2
.github/workflows/translate-i18n-base-on-english.yml 查看文件

types: [closed] types: [closed]
branches: [main] branches: [main]


permissions:
contents: write
pull-requests: write

jobs: jobs:
check-and-update: check-and-update:
if: github.event.pull_request.merged == true if: github.event.pull_request.merged == true
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: 2 # last 2 commits fetch-depth: 2 # last 2 commits
persist-credentials: false
token: ${{ secrets.GITHUB_TOKEN }}


- name: Check for file changes in i18n/en-US - name: Check for file changes in i18n/en-US
id: check_files id: check_files
if: env.FILES_CHANGED == 'true' if: env.FILES_CHANGED == 'true'
run: pnpm install --frozen-lockfile run: pnpm install --frozen-lockfile


- name: Run npm script
- name: Generate i18n translations
if: env.FILES_CHANGED == 'true' if: env.FILES_CHANGED == 'true'
run: pnpm run auto-gen-i18n run: pnpm run auto-gen-i18n


if: env.FILES_CHANGED == 'true' if: env.FILES_CHANGED == 'true'
uses: peter-evans/create-pull-request@v6 uses: peter-evans/create-pull-request@v6
with: with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update i18n files based on en-US changes commit-message: Update i18n files based on en-US changes
title: 'chore: translate i18n files' title: 'chore: translate i18n files'
body: This PR was automatically created to update i18n files based on changes in en-US locale. body: This PR was automatically created to update i18n files based on changes in en-US locale.

Loading…
取消
儲存