mirror of
https://github.com/italicsjenga/actions-test.git
synced 2024-12-23 16:41: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
|
run: git status
|
||||||
- name: shallow
|
- name: shallow
|
||||||
run: cat .git/shallow
|
run: cat .git/shallow
|
||||||
- name: deepend tree
|
- name: deepen tree
|
||||||
run: git fetch --tags --recurse-submodules=no --depth 100 origin main
|
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
|
- name: status
|
||||||
run: git status
|
run: git status
|
||||||
- name: descibe
|
- name: descibe
|
||||||
|
|
Loading…
Reference in a new issue