diff --git a/.github/actions-scripts/msft-create-translation-batch-pr.js b/.github/actions-scripts/msft-create-translation-batch-pr.js index 57643250ed..d267146359 100755 --- a/.github/actions-scripts/msft-create-translation-batch-pr.js +++ b/.github/actions-scripts/msft-create-translation-batch-pr.js @@ -119,7 +119,7 @@ async function main() { title: TITLE, base: BASE, head: HEAD, - body: `New translation batch for ${LANGUAGE}. You can see the log in [\`translations/log/${LANGUAGE}-resets.csv\`](https://github.com/${OWNER}/${REPO}/tree/${HEAD}/translations/log/${LANGUAGE}-resets.csv).`, + body: `New translation batch for ${LANGUAGE}. You can see the log in [\`translations/log/${LANGUAGE}-resets.csv\`](https://github.com/${OWNER}/${REPO}/tree/${HEAD}/translations/log/msft-${LANGUAGE}-resets.csv).`, labels: ['translation-batch', `translation-batch-${LANGUAGE}`], owner: OWNER, repo: REPO, diff --git a/.github/workflows/msft-create-translation-batch-pr.yml b/.github/workflows/msft-create-translation-batch-pr.yml index 04c9e9c7de..e897714c7b 100644 --- a/.github/workflows/msft-create-translation-batch-pr.yml +++ b/.github/workflows/msft-create-translation-batch-pr.yml @@ -134,12 +134,6 @@ jobs: node script/i18n/fix-translation-errors.js git add ${{ matrix.language_dir }} && git commit -m "Run script/i18n/fix-translation-errors.js" || echo "Nothing to commit" - # step 8a in docs-engineering/crowdin.md - - name: Check parsing - run: | - node script/i18n/lint-translation-files.js --check parsing | tee -a /tmp/batch.log | cat - git add ${{ matrix.language_dir }} && git commit -m "Run script/i18n/lint-translation-files.js --check parsing" || echo "Nothing to commit" - # step 8b in docs-engineering/crowdin.md - name: Check rendering run: | @@ -162,7 +156,7 @@ jobs: - name: Check in CSV report run: | mkdir -p translations/log - csvFile=translations/log/${{ matrix.language }}-resets.csv + csvFile=translations/log/msft-${{ matrix.language }}-resets.csv script/i18n/report-reset-files.js --report-type=csv --language=${{ matrix.language }} --log-file=/tmp/batch.log > $csvFile git add -f $csvFile && git commit -m "Check in ${{ matrix.language }} CSV report" || echo "Nothing to commit"