File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2121 ref : ${{ inputs.ref }}
2222 token : ${{ secrets.GITHUB_TOKEN }}
2323
24+ - name : Configure Git identity
25+ run : |
26+ git config --global user.email "[email protected] " 27+ git config --global user.name "github-actions[bot]"
28+
2429 - name : Install dependencies
2530 run : |
2631 python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 5656 - name : Commit and push changes
5757 run : |
5858 cd demo
59- git config user.name "github- actions[bot] "
60- git config user.email "41898282+ github-actions[bot]@users.noreply.github.com "
59+ git config --global user.email " actions@github.com "
60+ git config --global user.name " github-actions[bot]"
6161
6262 # 检查是否有变化
6363 if [[ -n $(git status --porcelain) ]]; then
You can’t perform that action at this time.
0 commit comments