Merge remote-tracking branch 'origin/1.20.1' into 1.20.1 #16
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
| # This workflow will run Crowdin Action that will upload new texts to Crowdin, download the newest translations and create a PR | |
| # For more information see: https://github.com/crowdin/github-action | |
| name: Sync Crowdin Sources | |
| on: | |
| push: | |
| branches: [1.20.1] | |
| paths: | |
| - src/generated/resources/assets/pipeorgans/lang/en_us.json | |
| jobs: | |
| upload: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Crowdin Action | |
| uses: crowdin/github-action@v2 | |
| with: | |
| upload_sources: true | |
| upload_translations: false | |
| download_translations: false | |
| create_pull_request: false | |
| env: | |
| CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
| CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |