We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba60384 commit e05b072Copy full SHA for e05b072
1 file changed
.github/workflows/translations-sync.yml
@@ -73,6 +73,12 @@ jobs:
73
token: ${{ secrets.CROWDIN_GITHUB_BOT_TOKEN }}
74
fetch-depth: 0
75
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
+
82
- name: Restore Lint Cache
83
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
84
with:
@@ -115,7 +121,7 @@ jobs:
115
121
# according to the configuration in package.json or .lintstagedrc
116
122
pnpm lint-staged
117
123
118
- git commit -m "$COMMIT_MSG" --signoff
124
+ git commit -m "$COMMIT_MSG" --signoff --no-verify
119
125
120
126
# Push the changes back to the PR branch
127
- name: Push Changes
0 commit comments