forked from Archives/searxng
97355672cd
Functions implemented to run *Weblate* workflows should use prefix 'weblate.': - babel.setup.translations.worktree --> weblate.translations.worktree Create git worktree ${TRANSLATIONS_WORKTREE} and checkout branch 'translations' from Weblate's counterpart (weblate) of the SearXNG (origin):: remote weblate https://weblate.bubu1.eu/git/searxng/searxng/ - babel.weblate.to.translations --> weblate.to.translations Update 'translations' branch of SearXNG (origin) with last additions from Weblate. - babel.translations.to.master --> weblate.translations.commit Update 'translations' branch of SearXNG (origin) with last additions from Weblate. Copy the changes to the master branch, compile translations and create a commit in the local branch (master) - babel.master.to.translations --> weblate.push.translations Push *translation changes* from SearXNG (origin) to Weblate's counterpart (weblate). Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
57 lines
1.7 KiB
YAML
57 lines
1.7 KiB
YAML
name: "Update translations"
|
|
on:
|
|
schedule:
|
|
- cron: "05 07 * * 5"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
babel:
|
|
name: "create PR for additons from weblate"
|
|
runs-on: ubuntu-20.04
|
|
if: ${{ github.repository_owner == 'searxng' && github.ref == 'refs/heads/master' }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: '0'
|
|
token: ${{ secrets.WEBLATE_GITHUB_TOKEN }}
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.9'
|
|
architecture: 'x64'
|
|
- name: Cache Python dependencies
|
|
id: cache-python
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ./local
|
|
key: python-ubuntu-20.04-3.9-${{ hashFiles('requirements*.txt', 'setup.py') }}
|
|
- name: weblate & git setup
|
|
env:
|
|
WEBLATE_CONFIG: ${{ secrets.WEBLATE_CONFIG }}
|
|
run: |
|
|
mkdir -p ~/.config
|
|
echo "${WEBLATE_CONFIG}" > ~/.config/weblate
|
|
git config --global user.email "searxng-bot@users.noreply.github.com"
|
|
git config --global user.name "searxng-bot"
|
|
- name: Merge and push transation updates
|
|
run: |
|
|
make V=1 weblate.translations.commit
|
|
- name: Create Pull Request
|
|
id: cpr
|
|
uses: peter-evans/create-pull-request@v3
|
|
with:
|
|
token: ${{ secrets.WEBLATE_GITHUB_TOKEN }}
|
|
commit-message: Update translations
|
|
committer: searxng-bot <searxng-bot@users.noreply.github.com>
|
|
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
|
|
signoff: false
|
|
branch: translations_update
|
|
delete-branch: true
|
|
draft: false
|
|
title: 'Update translations'
|
|
body: |
|
|
Update translations
|
|
labels: |
|
|
translation
|