Skip to content

Commit f5574fd

Browse files
committed
Add fetch translations from Crowdin action
1 parent 52c02df commit f5574fd

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Fetch translations from Crowdin
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
schedule:
8+
# * is a special character in YAML so you have to quote this string
9+
- cron: '0 0 * * 7'
10+
workflow_dispatch:
11+
12+
jobs:
13+
fetchTranslations:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: write
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v5
20+
- name: Fetch translations from Crowdin
21+
uses: nvdaaddons/crowdinRegistration/.github/actions/fetchTranslations

0 commit comments

Comments
 (0)