docs(position): missing examples and SASS variable information #1286
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: Crowdin Uploads | |
concurrency: | |
group: crowdin-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'packages/api-generator/src/locale/en/**' | |
- 'packages/docs/src/i18n/messages/en.json' | |
- 'packages/docs/src/pages/en/**' | |
- '.github/workflows/**' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
CROWDIN_BRANCH: v3 | |
jobs: | |
upload-to-crowdin: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Upload | |
uses: crowdin/github-action@v1.19.0 | |
with: | |
config: crowdin.yml | |
crowdin_branch_name: ${{ env.CROWDIN_BRANCH }} |