fix: editor stuck on image loading loop when uploading image in row document #5082
Workflow file for this run
This file contains 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: Ninja i18n action | |
on: | |
pull_request_target: | |
# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings | |
permissions: | |
pull-requests: write | |
jobs: | |
ninja-i18n: | |
name: Ninja i18n - GitHub Lint Action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Run Ninja i18n | |
id: ninja-i18n | |
uses: opral/ninja-i18n-action@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |