Skip to content

fix(*): update the workflow indetation #4

fix(*): update the workflow indetation

fix(*): update the workflow indetation #4

name: Sync Translations with POEditor
on:
push:
branches:
- feat/translation-poeditor-integration
permissions:
contents: write
pull-requests: write
jobs:
sync-translations:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
- name: Install dependencies
run: npm ci
- name: Configure Git
run: |
git config user.name ${{ secrets.GIT_BOT_USERNAME }}
git config user.email ${{ secrets.GIT_BOT_EMAIL }}
git remote set-url origin https://${{ secrets.GIT_BOT_ACCESS_TOKEN }}@github.com/Aam-Digital/ndb-core.git
- name: Create or update branch for translations
run: |
branch_name="chore/update-poeditor-translations"
# Check if branch exists on remote
if git ls-remote --exit-code origin $branch_name; then
echo "Branch $branch_name already exists. Fetching it..."
git fetch origin $branch_name:$branch_name
git checkout $branch_name
git pull origin $branch_name
else
echo "Creating new branch $branch_name..."
git checkout -b $branch_name
fi
- name: Extract i18n keys
run: npm run extract-i18n
- name: Upload translations to POEditor
run: |
declare -A files
# Populate file mappings dynamically
files["en"]="src/assets/locale/messages.xlf"
files["de"]="src/assets/locale/messages.de.xlf"
files["it"]="src/assets/locale/messages.it.xlf"
files["fr"]="src/assets/locale/messages.fr.xlf"
for lang in "${!files[@]}"; do
echo "Uploading ${files[$lang]} for language $lang"
response=$(curl -s -X POST https://api.poeditor.com/v2/projects/upload \
-F "api_token=${{ secrets.POEDITOR_API_TOKEN }}" \
-F "id=${{ secrets.POEDITOR_PROJECT_ID }}" \
-F "language=$lang" \
-F "updating=terms_translations" \
-F "overwrite=1" \
-F "sync_terms=1" \
-F "file=@${files[$lang]}")
status=$(echo $response | jq -r '.response.status')
if [ "$status" != "success" ]; then
echo "Error uploading file for $lang: $response"
exit 1
fi
echo "Waiting for 30 second to respect rate limits..."
sleep 30
done
- name: Export translations from POEditor
run: |
languages=("en" "fr" "it" "de")
for lang in "${languages[@]}"; do
echo "Exporting translations for language $lang"
response=$(curl -s -X POST https://api.poeditor.com/v2/projects/export \
-F "api_token=${{ secrets.POEDITOR_API_TOKEN }}" \
-F "id=${{ secrets.POEDITOR_PROJECT_ID }}" \
-F "language=$lang" \
-F "type=xlf")
status=$(echo $response | jq -r '.response.status')
if [ "$status" == "success" ]; then
url=$(echo $response | jq -r '.result.url')
if [ -n "$url" ]; then
echo "Downloading translations for $lang from $url"
if [ "$lang" == "en" ]; then
curl -s -o src/assets/locale/messages.xlf $url
else
curl -s -o src/assets/locale/messages.$lang.xlf $url
fi
else
echo "No URL found for downloading translations for $lang"
exit 1
fi
else
echo "Error exporting translations for $lang: $response"
exit 1
fi
echo "Waiting for 30 second to respect rate limits..."
sleep 30
done
- name: Commit file changes
run: |
if git diff --quiet; then
echo "No changes to commit. Exiting."
exit 0
fi
git add src/assets/locale/*.xlf
git commit -m "Update translations from POEditor"
- name: Push changes
run: |
git push origin HEAD
- name: Create Pull Request
uses: actions/github-script@v6
with:
script: |
const { repo, owner } = context.repo;
const headBranch = 'chore/update-poeditor-translations';
const baseBranch = 'master';
const pulls = await github.rest.pulls.list({
owner: owner,
repo: repo,
head: headBranch,
base: baseBranch,
state: 'open',
});
if (pulls.data.length < 1) {
const diff = await github.rest.repos.compareCommits({
owner,
repo,
base: baseBranch,
head: headBranch,
});
if (diff.data.commits.length === 0) {
return;
}
const result = await github.rest.pulls.create({
title: 'Update POEditor translations messages',
owner,
repo,
head: headBranch,
base: baseBranch,
body: [
"### Description of changes",
'This PR updates translations from POEditor.',
'Generated by GitHub Actions.'
].join('\n'),
});
await github.rest.issues.addLabels({
owner,
repo,
issue_number: result.data.number,
labels: ['feature', 'automated pr'],
});
} else {
const existingPR = pulls.data[0];
await github.rest.pulls.update({
owner: owner,
repo: repo,
pull_number: existingPR.number,
body: [
existingPR.body,
`Updated by Job ${context.job}`,
].join('\n'),
});
}