Browse Source
fix: Crowdin upload sources action (#672)
* Fix Crowdin upload sources action
* Replace biome with deno in vscode extension recommendations
---------
Co-authored-by: philon- <[email protected]>
pull/673/head
Jeremy Gallant
12 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
12 additions and
12 deletions
-
.github/workflows/crowdin-upload-sources.yml
-
.vscode/extensions.json
|
|
|
@ -5,9 +5,9 @@ on: |
|
|
|
# Monitor all .json files within the /src/i18n/locales/en/ directory. |
|
|
|
# This ensures the workflow triggers if any the English namespace files are modified on the main branch. |
|
|
|
paths: |
|
|
|
- '/src/i18n/locales/en/**/*.json' |
|
|
|
branches: [ main ] |
|
|
|
workflow_dispatch: # Allow manual triggering |
|
|
|
- "/src/i18n/locales/en/*.json" |
|
|
|
branches: [main] |
|
|
|
workflow_dispatch: # Allow manual triggering |
|
|
|
|
|
|
|
jobs: |
|
|
|
synchronize-with-crowdin: |
|
|
|
@ -20,13 +20,13 @@ jobs: |
|
|
|
- name: Upload sources with Crowdin |
|
|
|
uses: crowdin/github-action@v2 |
|
|
|
with: |
|
|
|
base_url: 'https://meshtastic.crowdin.com/api/v2' |
|
|
|
config: 'crowdin.yml' |
|
|
|
upload_sources: true |
|
|
|
upload_translations: false |
|
|
|
download_translations: false |
|
|
|
crowdin_branch_name: 'main' |
|
|
|
|
|
|
|
base_url: "https://meshtastic.crowdin.com/api/v2" |
|
|
|
config: "crowdin.yml" |
|
|
|
upload_sources: true |
|
|
|
upload_translations: false |
|
|
|
download_translations: false |
|
|
|
crowdin_branch_name: "main" |
|
|
|
|
|
|
|
env: |
|
|
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} |
|
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |
|
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |
|
|
|
|
|
|
|
@ -1,3 +1,3 @@ |
|
|
|
{ |
|
|
|
"recommendations": ["bradlc.vscode-tailwindcss", "biomejs.biome"] |
|
|
|
"recommendations": ["bradlc.vscode-tailwindcss", "denoland.vscode-deno"] |
|
|
|
} |
|
|
|
|