mirror of
https://github.com/starship/starship.git
synced 2026-06-20 02:02:07 +07:00
c22100a678
ci: Pin actions digests and add minimumReleaseAge
18 lines
564 B
YAML
18 lines
564 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@05f21625b1486f1b77d53002fed82c4609247712 # v0.1.1
|
|
with:
|
|
project_id: 372655
|
|
api_key: ${{ secrets.CROWDIN_API_TOKEN }}
|