Add skip_push input option (#401)

Co-authored-by: Stefan Zweifel <stefan@stefanzweifel.dev>
This commit is contained in:
Koen van Zuijlen
2025-12-17 20:23:26 +01:00
committed by GitHub
parent 65c56779c9
commit 1e49d5001f
4 changed files with 30 additions and 0 deletions

View File

@@ -191,6 +191,10 @@ _tag_commit() {
}
_push_to_github() {
if "$INPUT_SKIP_PUSH"; then
_log "debug" "git-push will not be executed.";
return
fi
echo "INPUT_BRANCH value: $INPUT_BRANCH";