Browse Source
🔨 Fix `commit_in_place` passed via env variable in `translate.yml` workflow (#15151)
pull/15153/head
Motov Yurii
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
.github/workflows/translate.yml
|
|
|
@ -119,5 +119,5 @@ jobs: |
|
|
|
LANGUAGE: ${{ matrix.lang }} |
|
|
|
EN_PATH: ${{ github.event.inputs.en_path }} |
|
|
|
COMMAND: ${{ matrix.command }} |
|
|
|
COMMIT_IN_PLACE: ${{ github.event.inputs.commit_in_place }} |
|
|
|
COMMIT_IN_PLACE: ${{ github.event.inputs.commit_in_place == 'true' && 'true' || '' }} |
|
|
|
MAX: ${{ github.event.inputs.max }} |
|
|
|
|