We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfd358b commit d4f4c0bCopy full SHA for d4f4c0b
1 file changed
.github/workflows/translation.yml
@@ -16,6 +16,11 @@ jobs:
16
steps:
17
- name: Grab the repo src
18
uses: actions/checkout@v2
19
+ - name: Setup git user as [bot]
20
+ # Refs:
21
+ # * https://github.community/t/github-actions-bot-email-address/17204/6
22
+ # * https://github.com/actions/checkout/issues/13#issuecomment-724415212
23
+ uses: fregante/setup-git-user@v1.0.1
24
25
- name: Set up Python
26
uses: actions/setup-python@v2
@@ -31,8 +36,6 @@ jobs:
31
36
32
37
- name: Commit the POT file to Git
33
38
run: |
34
- git config --local user.email "github-actions[bot]@users.noreply.github.com"
35
- git config --local user.name "github-actions[bot]"
39
git_hash=$(git rev-parse --short "${GITHUB_SHA}")
40
git commit -m "Update messages.pot as of version ${git_hash}" locales/messages.pot
41
0 commit comments