Sync Translated Content #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync Translated Content | |
on: | |
workflow_dispatch: | |
inputs: | |
notes: | |
description: "Notes" | |
required: false | |
default: "" | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: "0 */24 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/checkout@v2 | |
with: | |
repository: mdn/content | |
path: mdn/content | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: "12" | |
- name: Cache node_modules | |
uses: actions/[email protected] | |
id: cached-node_modules | |
with: | |
path: | | |
${{ github.workspace }}/mdn/content/node_modules | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- name: Install all yarn packages | |
if: steps.cached-node_modules.outputs.cache-hit != 'true' | |
working-directory: ${{ github.workspace }}/mdn/content | |
run: | | |
yarn --frozen-lockfile | |
- name: Sync translated content | |
env: | |
CONTENT_ROOT: ${{ github.workspace }}/mdn/content/files | |
CONTENT_TRANSLATED_ROOT: ${{ github.workspace }}/files | |
working-directory: ${{ github.workspace }}/mdn/content | |
run: | | |
yarn content sync-translated-content | |
- name: Commit changes | |
# git commit will fail if there are no changes but that's okay! | |
continue-on-error: true | |
run: | | |
cd $GITHUB_WORKSPACE | |
git remote add upstream "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" | |
git config --local user.email "[email protected]" | |
git config --local user.name "MDN" | |
git commit -a -m "[CRON] sync translated content" && \ | |
git pull --rebase upstream main && \ | |
git push upstream main |