feat: fix math formula display in chat bubbles by improving LaTeX ren… #150
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: Crowdin Action | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| synchronize-with-crowdin: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| if: github.repository == 'casibase/casibase' && github.event_name == 'push' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: crowdin action | |
| uses: crowdin/github-action@1.4.8 | |
| with: | |
| upload_translations: true | |
| download_translations: true | |
| push_translations: true | |
| commit_message: 'refactor: New Crowdin translations by Github Action' | |
| localization_branch_name: l10n_crowdin_action | |
| create_pull_request: true | |
| pull_request_title: 'refactor: New Crowdin translations' | |
| crowdin_branch_name: l10n_branch | |
| config: './web/crowdin.yml' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CROWDIN_PROJECT_ID: '603051' | |
| CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
| # - name: crowdin backend action | |
| # uses: crowdin/github-action@1.4.8 | |
| # with: | |
| # upload_translations: true | |
| # download_translations: true | |
| # push_translations: true | |
| # commit_message: 'refactor: New Crowdin Backend translations by Github Action' | |
| # localization_branch_name: l10n_crowdin_action | |
| # create_pull_request: true | |
| # pull_request_title: 'refactor: New Crowdin Backend translations' | |
| # crowdin_branch_name: l10n_branch | |
| # config: './crowdin.yml' | |
| # env: | |
| # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # CROWDIN_PROJECT_ID: '603051' | |
| # CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |