[skip ci] Fix i18n resource generator workflow skip condition
The commit message is the title plus description. Thus, using "endsWith" for matching the title does not work
This commit is contained in:
2
.github/workflows/update_i18n_languages.yml
vendored
2
.github/workflows/update_i18n_languages.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
|||||||
update-i18n:
|
update-i18n:
|
||||||
if: >
|
if: >
|
||||||
github.event_name == 'workflow_dispatch' ||
|
github.event_name == 'workflow_dispatch' ||
|
||||||
endsWith(github.event.head_commit.message, 'Translations update from Hosted Weblate')
|
contains(github.event.head_commit.message, 'Translations update from Hosted Weblate')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
Reference in New Issue
Block a user