We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52c02df commit f5574fdCopy full SHA for f5574fd
1 file changed
.github/workflows/fetchTranslationsFromCrowdin.yaml
@@ -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