Skip to content

Commit

Permalink
feat(workflows): strip user.email
Browse files Browse the repository at this point in the history
  • Loading branch information
nexpid committed Jul 24, 2024
1 parent 0659e94 commit c375513
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/crowdin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
working-directory: main
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add lang/values/.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/merge-main-to-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Fetch dev branch
run: git fetch origin dev
run: git fetch --all

- name: Rebase main branch
run: git rebase origin/dev
run: git rebase dev

- name: Push changes to dev
run: git push origin dev
run: git push dev
2 changes: 1 addition & 1 deletion .github/workflows/readmes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Publish changes
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add plugins/*/README.md README.md -f
Expand Down

0 comments on commit c375513

Please sign in to comment.