mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
feat: add ninja_i18n.yml i18n lint action (#4950)
This commit is contained in:
parent
066a511dc5
commit
3de2a20278
25
.github/workflows/ninja_i18n.yml
vendored
Normal file
25
.github/workflows/ninja_i18n.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
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 }}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user