mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
26 lines
569 B
YAML
26 lines
569 B
YAML
|
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 }}
|
||
|
|