Add ToArrayOfIntegers attribute for integer array casting with string splitting #27
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: Update docs translation | |
| on: | |
| pull_request_target: | |
| paths: | |
| - 'docs/**' | |
| jobs: | |
| update-docs: | |
| name: Update docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.YIISOFT_GITHUB_TOKEN || github.token }} | |
| ref: ${{ github.head_ref }} | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| - name: Use po4a | |
| uses: addnab/docker-run-action@v3 | |
| with: | |
| image: arduanovdanil/po4a-fork:v0.73 | |
| options: -v ${{ github.workspace }}:/src | |
| run: | | |
| cd docs | |
| po4a po4a.cfg | |
| - name: Commit changed files | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: Update docs translation | |
| file_pattern: 'docs' |