mirror of
https://github.com/evroon/bracket.git
synced 2026-07-31 10:16:46 -04:00
23 lines
566 B
YAML
23 lines
566 B
YAML
# Run pre-translate with translation memory, all files/langs, at midnight daily.
|
|
name: Crowdin Updates
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
trigger_crowdin_tm:
|
|
name: Crowdin Translation Memory Trigger
|
|
runs-on: ubuntu-24.04
|
|
# Prevent this workflow from running (and failing) on forks
|
|
if: github.repository == 'evroon/bracket'
|
|
steps:
|
|
- uses: starship/crowdin-pretranslate-action@main
|
|
with:
|
|
project_id: 651936
|
|
api_key: ${{ secrets.CROWDIN_API_KEY }}
|