Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into 1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-helldar committed Aug 31, 2024
2 parents 7ba3333 + df5efcb commit 4b2884f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Documentation

on:
release:
push:
branches:
- main
Expand Down
6 changes: 3 additions & 3 deletions config/public.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
'priority' => (int) env('TRANSLATION_DEEPL_PRIORITY', 2),

'credentials' => [
'key' => env('TRANSLATION_DEEPL_KEY'),
'key' => (string) env('TRANSLATION_DEEPL_KEY'),
],
],

Expand All @@ -218,8 +218,8 @@
'priority' => (int) env('TRANSLATION_YANDEX_PRIORITY', 3),

'credentials' => [
'key' => env('TRANSLATION_YANDEX_KEY'),
'folder' => env('TRANSLATION_FOLDER_ID'),
'key' => (string) env('TRANSLATION_YANDEX_KEY'),
'folder' => (string) env('TRANSLATION_YANDEX_FOLDER_ID'),
],
],
],
Expand Down

0 comments on commit 4b2884f

Please sign in to comment.