2023-05-11 19:21:28 -06:00
|
|
|
name: cron-translations
|
2023-05-03 20:04:02 -06:00
|
|
|
|
2023-04-25 19:32:49 -06:00
|
|
|
on:
|
2023-04-25 19:38:49 -06:00
|
|
|
schedule:
|
2023-05-11 19:21:28 -06:00
|
|
|
- cron: "7 0 * * *" # every day at 00:07 UTC
|
2023-04-25 19:32:49 -06:00
|
|
|
|
|
|
|
jobs:
|
2023-05-11 19:21:28 -06:00
|
|
|
crowdin-pull:
|
2023-04-25 19:32:49 -06:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-15 20:53:18 -06:00
|
|
|
if: github.repository == 'go-gitea/gitea'
|
2023-04-25 19:32:49 -06:00
|
|
|
steps:
|
2023-05-11 19:21:28 -06:00
|
|
|
- uses: actions/checkout@v3
|
2023-04-25 19:32:49 -06:00
|
|
|
- name: download from crowdin
|
|
|
|
uses: docker://jonasfranz/crowdin
|
|
|
|
env:
|
|
|
|
CROWDIN_KEY: ${{ secrets.CROWDIN_KEY }}
|
|
|
|
PLUGIN_DOWNLOAD: true
|
|
|
|
PLUGIN_EXPORT_DIR: options/locale/
|
|
|
|
PLUGIN_IGNORE_BRANCH: true
|
|
|
|
PLUGIN_PROJECT_IDENTIFIER: gitea
|
|
|
|
- name: update locales
|
|
|
|
run: ./build/update-locales.sh
|
|
|
|
- name: push translations to repo
|
|
|
|
uses: appleboy/git-push-action@v0.0.2
|
|
|
|
with:
|
|
|
|
author_email: "teabot@gitea.io"
|
|
|
|
author_name: GiteaBot
|
|
|
|
branch: main
|
|
|
|
commit: true
|
|
|
|
commit_message: "[skip ci] Updated translations via Crowdin"
|
|
|
|
remote: "git@github.com:go-gitea/gitea.git"
|
|
|
|
ssh_key: ${{ secrets.DEPLOY_KEY }}
|
2023-05-11 19:21:28 -06:00
|
|
|
crowdin-push:
|
2023-04-25 19:32:49 -06:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-15 20:53:18 -06:00
|
|
|
if: github.repository == 'go-gitea/gitea'
|
2023-04-25 19:32:49 -06:00
|
|
|
steps:
|
2023-05-11 19:21:28 -06:00
|
|
|
- uses: actions/checkout@v3
|
2023-04-25 19:32:49 -06:00
|
|
|
- name: push translations to crowdin
|
|
|
|
uses: docker://jonasfranz/crowdin
|
|
|
|
env:
|
|
|
|
CROWDIN_KEY: ${{ secrets.CROWDIN_KEY }}
|
|
|
|
PLUGIN_UPLOAD: true
|
2023-05-14 02:57:23 -06:00
|
|
|
PLUGIN_EXPORT_DIR: options/locale/
|
2023-04-25 19:32:49 -06:00
|
|
|
PLUGIN_IGNORE_BRANCH: true
|
|
|
|
PLUGIN_PROJECT_IDENTIFIER: gitea
|
|
|
|
PLUGIN_FILES: |
|
|
|
|
locale_en-US.ini: options/locale/locale_en-US.ini
|
|
|
|
PLUGIN_BRANCH: main
|