-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '5.1-dev' into 5.0_Remove_call_user_func
- Loading branch information
Showing
1,856 changed files
with
27,634 additions
and
14,759 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Create translation pull request | ||
|
||
on: | ||
push: | ||
branches: [ translation ] | ||
|
||
workflow_dispatch: | ||
|
||
schedule: | ||
# Run daily at 7:32 | ||
- cron: '32 7 * * *' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
permissions: | ||
contents: write # for Git to git push | ||
runs-on: ubuntu-latest | ||
# Only run this action the translation-bot repository in the translation branch | ||
if: ${{ github.repository == 'joomla-translation-bot/joomla-cms' && github.ref == 'refs/heads/translation5' }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
# We need the full depth to create / update the pull request against the main repo | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Fetch latest cms changes | ||
run: | | ||
git config user.name Translation Bot | ||
git config user.email release+translation-bot@joomla.org | ||
git remote add upstream https://github.com/joomla/joomla-cms.git | ||
git fetch upstream | ||
git checkout --progress --force -B translation5 refs/remotes/origin/translation5 | ||
git merge upstream/5.0-dev | ||
- name: Fetch and extract translations | ||
run: | | ||
cd .. | ||
wget -nv "https://github.com/joomla/core-translations/archive/refs/heads/main.zip" | ||
unzip main.zip | ||
- name: Syncing directories | ||
# We use a simple copy paste syntax here if needed customization for different directories | ||
run: | | ||
cd .. | ||
SYNC_VERSION="v5" | ||
SYNC_PATH="installation/language/" | ||
echo ${SYNC_PATH} | ||
rsync -i -rptgo --checksum --ignore-times --delete --exclude="*en-GB*" core-translations-main/joomla_${SYNC_VERSION}/translations/core/${SYNC_PATH} joomla-cms/${SYNC_PATH} | ||
- name: Update static error pages | ||
run: | | ||
npm ci --ignore-scripts && node build/build.js --build-pages | ||
- name: Create commit | ||
continue-on-error: true | ||
run: | | ||
git config user.name Translation Bot | ||
git config user.email release+translation-bot@joomla.org | ||
git add . | ||
git commit -m "Language update" | ||
git push --force | ||
- name: Create pull request | ||
if: ${{ success() }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.API_TOKEN_GITHUB }} | ||
run: | | ||
gh pr list -R joomla/joomla-cms --state open --author joomla-translation-bot -S "[5.x] Translation Update" | grep -v "No pull" || \ | ||
gh pr create --title "[5.x] Translation Update" --body "Automatically created pull request based on core-translation repository changes" -R joomla/joomla-cms --base 5.0-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.