Skip to content

Commit 2b5d7d2

Browse files
committed
self push
1 parent 843aba0 commit 2b5d7d2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ on:
33
push:
44
branches: [ main, develop, gh-build ]
55

6+
permissions:
7+
contents: write
8+
69
concurrency:
710
group: ${{ github.ref }}
811
cancel-in-progress: true
@@ -62,7 +65,11 @@ jobs:
6265
rm -rf locales/.doctrees
6366
6467
- name: TODO - commit locales into repository
65-
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
6673
6774
- name: put original locales back
6875
run: |

0 commit comments

Comments
 (0)