mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-06 05:17:49 +00:00
18 lines
521 B
YAML
18 lines
521 B
YAML
# Run pre-translate with translation memory, all files/langs, at midnight daily.
|
|
name: Crowdin Updates
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
trigger_crowdin_tm:
|
|
name: Crowdin Translation Memory Trigger
|
|
runs-on: ubuntu-latest
|
|
# Prevent this workflow from running (and failing) on forks
|
|
if: github.repository == 'starship/starship'
|
|
steps:
|
|
- uses: starship/crowdin-pretranslate-action@v0.1.1
|
|
with:
|
|
project_id: 372655
|
|
api_key: ${{ secrets.CROWDIN_API_TOKEN }}
|