We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20ab4cc commit a60fa36Copy full SHA for a60fa36
1 file changed
.github/workflows/ai-translation.yml
@@ -199,7 +199,9 @@ jobs:
199
needs: extract_strings
200
if: needs.extract_strings.outputs.translations-to-process == 'true'
201
permissions:
202
- models: read # for AI inference
+ actions: read # needed for downloading artifacts
203
+ contents: read # required by checkout
204
+ models: read # for AI inference
205
runs-on: ubuntu-latest
206
strategy:
207
matrix:
@@ -363,6 +365,7 @@ jobs:
363
365
needs: [extract_strings, ai_translate]
364
366
if: needs.extract_strings.outputs.po-files-changed == 'true'
367
368
+ actions: read # needed for downloading translated artifacts
369
contents: write # for creating branches and commits
370
pull-requests: write # for creating PRs
371
0 commit comments