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.
1 parent 843aba0 commit 2b5d7d2Copy full SHA for 2b5d7d2
.github/workflows/build.yml
@@ -3,6 +3,9 @@ on:
3
push:
4
branches: [ main, develop, gh-build ]
5
6
+permissions:
7
+ contents: write
8
+
9
concurrency:
10
group: ${{ github.ref }}
11
cancel-in-progress: true
@@ -62,7 +65,11 @@ jobs:
62
65
rm -rf locales/.doctrees
63
66
64
67
- name: TODO - commit locales into repository
- run: echo "commit it"
68
+ run: |
69
+ git config --global user.name "GitHub Action"
70
+ git config --global user.email "[email protected]"
71
+ git commit -m "Automated locales generation" locales
72
+ git push
73
74
- name: put original locales back
75
run: |
0 commit comments