refactor: tooltips behavior and tooltips in bookmark editor (#4136) #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 Files | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "build.gradle" | |
| - "README.md" | |
| - "app/core/src/main/resources/messages_*.properties" | |
| - "app/core/src/main/resources/static/3rdPartyLicenses.json" | |
| - "scripts/ignore_translation.toml" | |
| # cancel in-progress jobs if a new job is triggered | |
| # This is useful to avoid running multiple builds for the same branch if a new commit is pushed | |
| # or a pull request is updated. | |
| # It helps to save resources and time by ensuring that only the latest commit is built and tested | |
| # This is particularly useful for long-running jobs that may take a while to complete. | |
| # The `group` is set to a combination of the workflow name, event name, and branch name. | |
| # This ensures that jobs are grouped by the workflow and branch, allowing for cancellation of | |
| # in-progress jobs when a new commit is pushed to the same branch or a new pull request is opened. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref_name || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| sync-files: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Setup GitHub App Bot | |
| id: setup-bot | |
| uses: ./.github/actions/setup-bot | |
| with: | |
| app-id: ${{ secrets.GH_APP_ID }} | |
| private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} | |
| - name: Set up Python | |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 | |
| with: | |
| python-version: "3.12" | |
| cache: "pip" # caching pip dependencies | |
| - name: Sync translation property files | |
| run: | | |
| python .github/scripts/check_language_properties.py --reference-file "app/core/src/main/resources/messages_en_GB.properties" --branch main | |
| - name: Commit translation files | |
| run: | | |
| git add app/core/src/main/resources/messages_*.properties | |
| git diff --staged --quiet || git commit -m ":memo: Sync translation files" || echo "No changes detected" | |
| - name: Install dependencies | |
| run: pip install --require-hashes -r ./.github/scripts/requirements_sync_readme.txt | |
| - name: Sync README.md | |
| run: | | |
| python scripts/counter_translation.py | |
| - name: Run git add | |
| run: | | |
| git add README.md scripts/ignore_translation.toml | |
| git diff --staged --quiet || git commit -m ":memo: Sync README.md & scripts/ignore_translation.toml" || echo "No changes detected" | |
| - name: Create Pull Request | |
| if: always() | |
| uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 | |
| with: | |
| token: ${{ steps.setup-bot.outputs.token }} | |
| commit-message: Update files | |
| committer: ${{ steps.setup-bot.outputs.committer }} | |
| author: ${{ steps.setup-bot.outputs.committer }} | |
| signoff: true | |
| branch: sync_readme | |
| title: ":globe_with_meridians: Sync Translations + Update README Progress Table" | |
| body: | | |
| ### Description of Changes | |
| This Pull Request was automatically generated to synchronize updates to translation files and documentation. Below are the details of the changes made: | |
| #### **1. Synchronization of Translation Files** | |
| - Updated translation files (`messages_*.properties`) to reflect changes in the reference file `messages_en_GB.properties`. | |
| - Ensured consistency and synchronization across all supported language files. | |
| - Highlighted any missing or incomplete translations. | |
| #### **2. Update README.md** | |
| - Generated the translation progress table in `README.md`. | |
| - Added a summary of the current translation status for all supported languages. | |
| - Included up-to-date statistics on translation coverage. | |
| #### **Why these changes are necessary** | |
| - Keeps translation files aligned with the latest reference updates. | |
| - Ensures the documentation reflects the current translation progress. | |
| --- | |
| Auto-generated by [create-pull-request][1]. | |
| [1]: https://github.com/peter-evans/create-pull-request | |
| draft: false | |
| delete-branch: true | |
| labels: github-actions | |
| sign-commits: true | |
| add-paths: | | |
| README.md | |
| app/core/src/main/resources/messages_*.properties |