i18n - docs translations (#15724)

Created by Github action

---------

Co-authored-by: Abdul Rahman <ar5438376@gmail.com>
Co-authored-by: github-actions <github-actions@twenty.com>
This commit is contained in:
github-actions[bot]
2025-11-08 21:20:40 +01:00
committed by GitHub
parent 06d8c8c76a
commit 1bd1165d2e
11 changed files with 99 additions and 52 deletions
+5 -2
View File
@@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v4
with:
token: ${{ github.token }}
ref: main
ref: ${{ github.ref }}
- name: Setup i18n branch
run: |
@@ -78,12 +78,15 @@ jobs:
- name: Fix file permissions
run: sudo chown -R runner:docker . || true
- name: Fix translated documentation links
run: bash packages/twenty-docs/scripts/fix-translated-links.sh
- name: Check for changes and commit
id: check_changes
run: |
git add .
if ! git diff --staged --quiet --exit-code; then
git commit -m "chore: update docs translations from Crowdin"
git commit -m "chore: update docs translations from Crowdin and fix internal links"
echo "changes_detected=true" >> $GITHUB_OUTPUT
else
echo "changes_detected=false" >> $GITHUB_OUTPUT