We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e20accd commit 73ed068Copy full SHA for 73ed068
.github/workflows/crowdin-sync.yml
@@ -35,6 +35,7 @@ jobs:
35
token: ${{ secrets.CROWDIN_API_TOKEN }}
36
37
- name: Crowdin pull (download translations)
38
+ id: crowdin_pull
39
uses: crowdin/github-action@v2
40
with:
41
upload_sources: false
@@ -51,3 +52,9 @@ jobs:
51
52
53
env:
54
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55
+
56
+ - name: Enable Pull Request Automerge
57
+ if: steps.crowdin_pull.outputs.pull_request_number != ''
58
+ run: gh pr merge "${{ steps.crowdin_pull.outputs.pull_request_number }}" --auto --merge
59
+ env:
60
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments