mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Add auto messages.po updater
This commit is contained in:
parent
dc36d070c5
commit
0148ffe0d7
1 changed files with 29 additions and 0 deletions
29
.github/workflows/transifex.yml
vendored
Normal file
29
.github/workflows/transifex.yml
vendored
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
name: Check Transifex
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
messages:
|
||||||
|
name: Check message.po changes
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Install gettext
|
||||||
|
run: sudo apt-get install gettext
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Run Xgettext
|
||||||
|
run: ./bin/run_xgettext.sh
|
||||||
|
|
||||||
|
- name: Commit changed message.po
|
||||||
|
run: |
|
||||||
|
git config --local user.email "workflow@github.com"
|
||||||
|
git config --local user.name "GitHub Workflow"
|
||||||
|
git add ./view/lang/C/messages.po
|
||||||
|
git commit -m "Update message.po" || echo "Nothing to update"
|
||||||
|
|
||||||
|
- name: Push changes
|
||||||
|
uses: ad-m/github-push-action@master
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
branch: ${{ github.ref }}
|
Loading…
Reference in a new issue