From da206db6b34a4d6d02478f39ca3e6d3addde0cee Mon Sep 17 00:00:00 2001 From: Adam Wilson Date: Thu, 21 Aug 2025 08:49:08 -0600 Subject: [PATCH] script updates --- git_remotes_update.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/git_remotes_update.sh b/git_remotes_update.sh index c5afae402..0cab52e7c 100755 --- a/git_remotes_update.sh +++ b/git_remotes_update.sh @@ -11,6 +11,12 @@ YELLOW='\033[1;33m' BLUE='\033[0;34m' NC='\033[0m' # No Color +git checkout scheduled-test-runs + +echo +echo "performing 'git pull'" +git pull + echo -e "${BLUE}🔄 Fetching all remote branches...${NC}" git fetch --all @@ -82,4 +88,8 @@ echo "$batch_branches" | while read -r branch; do done echo -echo -e "${BLUE}⬆️ Pushing scheduled-test-runs to remote...${NC} \ No newline at end of file +echo -e "${BLUE}⬆️ Pushing scheduled-test-runs to remote...${NC}" + +echo +echo "performing 'git push'" +git push \ No newline at end of file