++repos
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s Details

This commit is contained in:
Nico Schottelius 2024-03-22 10:13:25 +01:00
parent cea63e1af2
commit fae59a97dc
1 changed files with 10 additions and 0 deletions

View File

@ -38,6 +38,16 @@ for repo in ~/.ctt \
git push
done
# Repos we want to pull in, but don't want to update
for pullonlyrepo in \
~/vcs/k8s-config/ \
~/vcs/ansible-main/ \
; do
echo $pullonlyrepo
cd $pullonlyrepo
git pull
done
# Step 2: pull/push all other repos in ~/vcs/
# We cannot commit as we do not know the state, but we
# can ensure everything committed before is pushed out