Fixed draggable options #4760
Workflow file for this run
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: Translations Diff | |
| on: | |
| pull_request_review: | |
| pull_request: | |
| types: [opened, edited, synchronize, ready_for_review] | |
| branches: | |
| - development | |
| - master | |
| jobs: | |
| translation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Base Branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.base_ref }} | |
| path: neve-base | |
| - name: Setup node 16 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 16.x | |
| - name: Build POT for Base Branch | |
| run: | | |
| cd neve-base | |
| ls languages/ | |
| composer install --no-dev --prefer-dist --no-progress --no-suggest | |
| yarn install --frozen-lockfile | |
| yarn run build | |
| ls languages/ | |
| - name: Checkout PR Branch (Head) | |
| uses: actions/checkout@v4 | |
| with: | |
| path: neve-head | |
| - name: Build POT for PR Branch | |
| run: | | |
| cd neve-head | |
| ls languages/ | |
| composer install --no-dev --prefer-dist --no-progress --no-suggest | |
| yarn install --frozen-lockfile | |
| yarn run build | |
| ls languages/ | |
| - name: Compare POT files | |
| uses: Codeinwp/action-i18n-string-reviewer@main | |
| with: | |
| fail-on-changes: 'true' | |
| openrouter-key: ${{ secrets.OPEN_ROUTER_API_KEY }} | |
| openrouter-model: 'google/gemini-2.5-flash' | |
| base-pot-file: 'neve-base/languages/neve.pot' | |
| target-pot-file: 'neve-head/languages/neve.pot' | |
| github-token: ${{ secrets.BOT_TOKEN }} |