2023-05-12 01:21:28 +00:00
|
|
|
name: cron-translations
|
2023-05-04 02:04:02 +00:00
|
|
|
|
2023-04-26 01:32:49 +00:00
|
|
|
on:
|
2023-04-26 01:38:49 +00:00
|
|
|
schedule:
|
2023-05-12 01:21:28 +00:00
|
|
|
- cron: "7 0 * * *" # every day at 00:07 UTC
|
2023-06-16 17:00:39 +00:00
|
|
|
workflow_dispatch:
|
2023-04-26 01:32:49 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-05-12 01:21:28 +00:00
|
|
|
crowdin-pull:
|
2023-04-26 01:32:49 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-16 02:53:18 +00:00
|
|
|
if: github.repository == 'go-gitea/gitea'
|
2023-04-26 01:32:49 +00:00
|
|
|
steps:
|
2023-09-16 15:06:27 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-03-30 18:11:50 +00:00
|
|
|
- uses: crowdin/github-action@v1
|
|
|
|
with:
|
|
|
|
upload_sources: true
|
|
|
|
upload_translations: false
|
|
|
|
download_sources: false
|
|
|
|
download_translations: true
|
|
|
|
push_translations: false
|
|
|
|
push_sources: false
|
|
|
|
create_pull_request: false
|
|
|
|
config: crowdin.yml
|
2023-04-26 01:32:49 +00:00
|
|
|
env:
|
2024-03-30 18:11:50 +00:00
|
|
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
2023-04-26 01:32:49 +00:00
|
|
|
CROWDIN_KEY: ${{ secrets.CROWDIN_KEY }}
|
|
|
|
- name: update locales
|
|
|
|
run: ./build/update-locales.sh
|
|
|
|
- name: push translations to repo
|
2023-10-30 07:56:43 +00:00
|
|
|
uses: appleboy/git-push-action@v0.0.3
|
2023-04-26 01:32:49 +00:00
|
|
|
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 }}
|