Trigger changeset #1979
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 # Necessary to comment on PRs | |
issues: read # Necessary to read issue comments | |
contents: read # Necessary to access the repo content | |
jobs: | |
ninja-i18n: | |
name: Ninja i18n - GitHub Lint Action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Ninja i18n | |
# @main ensures that the latest version of the action is used | |
uses: ./test | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |