chore(l10n): update translations readme.md (French) #58
This file contains hidden or 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 README headings and navigation to Crowdin | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - l10n_master | |
| paths: | |
| - 'locale/**/README.md' | |
| concurrency: | |
| group: crowdin-readme-navigation-sync | |
| cancel-in-progress: false | |
| jobs: | |
| sync: | |
| if: github.repository_owner == 'LizardByte' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: 'latest' | |
| - name: Install dependencies | |
| run: npm ci --ignore-scripts | |
| - name: Update and approve localized README headings and navigation | |
| run: npm run sync:readme-navigation-crowdin | |
| env: | |
| CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }} |