From 033f76299f220383be2eb73ccbba53f40d1d20c2 Mon Sep 17 00:00:00 2001 From: github_action_bot Date: Sat, 3 Aug 2024 12:18:03 -0500 Subject: [PATCH] only tag on first of month --- scripts/prevent_disable.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prevent_disable.sh b/scripts/prevent_disable.sh index 29a79c3..823bee8 100755 --- a/scripts/prevent_disable.sh +++ b/scripts/prevent_disable.sh @@ -33,7 +33,7 @@ echo "tag_message - ${tag_message}" # only add a tag on the 1st day of the month -if [ $(date +%d) = "03" ]; then +if [ $(date +%d) = "01" ]; then git tag $new_tag -m "$tag_message" echo "added unnecessary tag"