We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb094d0 + 6e1519a commit a1df1ecCopy full SHA for a1df1ec
.github/workflows/download-translations.yml
@@ -14,6 +14,7 @@ permissions: write-all
14
15
jobs:
16
crowdin:
17
+ if: ${{ secrets.CROWDIN_PROJECT_ID != '' }}
18
runs-on: ubuntu-latest
19
steps:
20
- name: Checkout
.github/workflows/upload-sources.yml
@@ -7,9 +7,11 @@ on:
7
- master
8
paths: ["en/**/*.*"]
9
10
+ workflow_dispatch:
11
+
12
13
crowdin-upload:
- if: github.event.pull_request.merged == true
+ if: (github.event.pull_request.merged == true) || (github.event_name == 'workflow_dispatch')
0 commit comments