File tree 2 files changed +11
-10
lines changed
2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 57
57
done
58
58
59
59
exit $status
60
- - name : Git commit
61
- run : |
62
- # git commit if there's any change
63
- if test -n "$(git status --porcelain 2>/dev/null)"; then
64
- git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
65
- git config --local user.name "github-actions[bot]"
66
- git add .
67
- git commit -m "Add changes"
68
- git push origin ${GITHUB_REF##*/}
69
- fi
Original file line number Diff line number Diff line change 17
17
python3 -m pip install gitfx
18
18
python3 -m gitfx ${{ inputs.filepath }}
19
19
shell : bash
20
+ - name : Git commit
21
+ run : |
22
+ # git commit if there's any change
23
+ if test -n "$(git status --porcelain 2>/dev/null)"; then
24
+ git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
25
+ git config --local user.name "github-actions[bot]"
26
+ git add .
27
+ git commit -m "Add changes"
28
+ git push origin ${GITHUB_REF##*/}
29
+ fi
30
+ shell : bash
20
31
branding :
21
32
icon : ' cloud-lightning'
22
33
color : ' purple'
You can’t perform that action at this time.
0 commit comments