feat: weblate checks workflow (#16251)

This commit is contained in:
bo0tzz 2025-03-03 12:39:53 +01:00 committed by GitHub
parent fe702ba6d7
commit 8e076ecfe4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

25
.github/workflows/weblate-lock.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Weblate checks
on:
pull_request:
branches: [main]
paths:
- 'i18n/**'
jobs:
enforce-lock:
runs-on: ubuntu-latest
steps:
- name: Check weblate lock
run: |
if [[ "false" = $(curl https://hosted.weblate.org/api/components/immich/immich/lock/ | jq .locked) ]]; then
exit 1
fi
- name: Find Pull Request
uses: juliangruber/find-pull-request-action@v1
id: find-pr
with:
branch: chore/translations
- name: Fail if existing weblate PR
if: ${{ steps.find-pr.outputs.number }}
run: exit 1