docs: import the operator guides that lived in the cozystack repo #51
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: i18n lint | |
| on: | |
| pull_request: | |
| paths: | |
| - 'i18n/**' | |
| - 'content/**' | |
| - 'hack/check-i18n.sh' | |
| - '.github/workflows/i18n-lint.yml' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'i18n/**' | |
| - 'content/**' | |
| - 'hack/check-i18n.sh' | |
| - '.github/workflows/i18n-lint.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| i18n-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Check i18n key parity and translation freshness | |
| run: ./hack/check-i18n.sh |