File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 26
26
- name : Fetch ${{ github.base_ref }}
27
27
shell : bash
28
28
run : |
29
- git config --global --add safe.directory ` pwd`
29
+ git config --global --add safe.directory $( pwd)
30
30
git fetch --progress --depth=1 origin ${{ github.base_ref }}
31
31
git log --pretty=oneline
32
32
Original file line number Diff line number Diff line change 27
27
- name : Shallow fetch (Pull Request)
28
28
if : ${{ github.event_name == 'pull_request' }}
29
29
run : |
30
- git config --global --add safe.directory ` pwd`
30
+ git config --global --add safe.directory $( pwd)
31
31
git fetch --progress --shallow-exclude ${{ github.base_ref }} origin +${{ github.sha }}:refs/remotes/origin/${{ github.head_ref }}
32
32
git log --pretty=oneline
33
33
@@ -43,11 +43,11 @@ jobs:
43
43
- name : Check commits (Pull Request)
44
44
if : ${{ github.event_name == 'pull_request' }}
45
45
run : |
46
- git config --global --add safe.directory ` pwd`
46
+ git config --global --add safe.directory $( pwd)
47
47
gitcc history --verbose ./
48
48
49
49
- name : Check commit (Push)
50
50
if : ${{ github.event_name == 'push' }}
51
51
run : |
52
- git config --global --add safe.directory ` pwd`
52
+ git config --global --add safe.directory $( pwd)
53
53
gitcc commit ./
You can’t perform that action at this time.
0 commit comments