From 13f55fa40f74379f0c4afa9fe026b519013fb3ac Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Wed, 17 Jul 2024 13:20:38 +0200 Subject: [PATCH] Add workflow to split up Weblate PR Closes #31369 Signed-off-by: Jon Koops --- .github/workflows/weblate-split.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/weblate-split.yml diff --git a/.github/workflows/weblate-split.yml b/.github/workflows/weblate-split.yml new file mode 100644 index 000000000000..495e66d6fac0 --- /dev/null +++ b/.github/workflows/weblate-split.yml @@ -0,0 +1,12 @@ +name: Split Weblate Translations +on: + pull_request: + branches: + - main + paths: + - '**/messages_*.properties' +jobs: + split-translations: + if: github.event.pull_request.head.repo.full_name == 'weblate/keycloak' + name: Split Translations + runs-on: ubuntu-latest