mirror of
https://github.com/italicsjenga/actions-test.git
synced 2024-12-23 08:31:43 +11:00
asdf
This commit is contained in:
parent
ab4fdb55a3
commit
07cf30c601
9
.github/workflows/merge.yml
vendored
9
.github/workflows/merge.yml
vendored
|
@ -21,8 +21,13 @@ jobs:
|
|||
run: git status
|
||||
- name: shallow
|
||||
run: cat .git/shallow
|
||||
- name: deepend tree
|
||||
run: git fetch --tags --recurse-submodules=no --depth 100 origin main
|
||||
- name: deepen tree
|
||||
run: |
|
||||
depth=0
|
||||
while ! git describe --tags main; do
|
||||
depth=$((depth + 1))
|
||||
git fetch --tags --recurse-submodules=no --depth $depth origin main
|
||||
done
|
||||
- name: status
|
||||
run: git status
|
||||
- name: descibe
|
||||
|
|
Loading…
Reference in a new issue