Skip to content

Commit e05b072

Browse files
committed
fixup! fix(crowdin): workflow improvements
1 parent ba60384 commit e05b072

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/translations-sync.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ jobs:
7373
token: ${{ secrets.CROWDIN_GITHUB_BOT_TOKEN }}
7474
fetch-depth: 0
7575

76+
# Setup git user for commits
77+
- name: Setup Git User
78+
run: |
79+
git config --global user.name "nodejs-crowdin"
80+
git config --global user.email "nodejs-crowdin@users.noreply.github.com"
81+
7682
- name: Restore Lint Cache
7783
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
7884
with:
@@ -115,7 +121,7 @@ jobs:
115121
# according to the configuration in package.json or .lintstagedrc
116122
pnpm lint-staged
117123
118-
git commit -m "$COMMIT_MSG" --signoff
124+
git commit -m "$COMMIT_MSG" --signoff --no-verify
119125
120126
# Push the changes back to the PR branch
121127
- name: Push Changes

0 commit comments

Comments
 (0)