From 4d573174c6df37f3a6b4b16821fc06289fdb4dc9 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Tue, 15 Jul 2025 01:48:23 +0200 Subject: [PATCH] [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 --- .github/workflows/update_i18n_languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_i18n_languages.yml b/.github/workflows/update_i18n_languages.yml index 6bfab852..7851db9b 100644 --- a/.github/workflows/update_i18n_languages.yml +++ b/.github/workflows/update_i18n_languages.yml @@ -10,7 +10,7 @@ jobs: update-i18n: if: > 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 steps: