mirror of https://github.com/searxng/searxng.git
github workflow: babel jobs to update messages.pot
This commit is contained in:
parent
32263ea637
commit
49aa7822d9
|
@ -90,6 +90,47 @@ jobs:
|
||||||
SINGLE_COMMIT: True
|
SINGLE_COMMIT: True
|
||||||
COMMIT_MESSAGE: build from commit ${{ github.sha }}
|
COMMIT_MESSAGE: build from commit ${{ github.sha }}
|
||||||
|
|
||||||
|
babel:
|
||||||
|
name: Babel
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
if: ${{ github.repository_owner == 'searxng' && github.ref == 'refs/heads/master' }}
|
||||||
|
needs:
|
||||||
|
- python
|
||||||
|
- themes
|
||||||
|
- documentation
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: '3.9'
|
||||||
|
architecture: 'x64'
|
||||||
|
- name: Update transations
|
||||||
|
id: update
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
pip install babel jinja2
|
||||||
|
searx_extra/update/update_translations.sh
|
||||||
|
- name: Open pull request
|
||||||
|
if: steps.update.outcome == 'success'
|
||||||
|
uses: peter-evans/create-pull-request@v3
|
||||||
|
with:
|
||||||
|
commit-message: Update translations (pot, po)
|
||||||
|
committer: searx-bot <noreply@github.com>
|
||||||
|
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
|
||||||
|
signoff: false
|
||||||
|
branch: update_translations_pot
|
||||||
|
delete-branch: true
|
||||||
|
draft: false
|
||||||
|
title: 'Update translations (pot, po)'
|
||||||
|
body: |
|
||||||
|
Update messages.pot and messages.po files
|
||||||
|
labels: |
|
||||||
|
translation
|
||||||
|
|
||||||
dockers:
|
dockers:
|
||||||
name: Docker
|
name: Docker
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
|
|
Loading…
Reference in New Issue