Emit warning if deprecated/removed options are used

This commit is contained in:
Stefan Zweifel
2025-05-03 15:51:01 +02:00
parent 739fd03b2d
commit e7955f713c
2 changed files with 31 additions and 0 deletions

View File

@@ -27,6 +27,18 @@ _log() {
}
_main() {
if "$INPUT_SKIP_FETCH"; then
_log "warning" "skip_fetch has been removed in v6. It does not have any effect anymore.";
fi
if "$INPUT_SKIP_CHECKOUT"; then
_log "warning" "skip_checkout has been removed in v6. It does not have any effect anymore.";
fi
if "$INPUT_CREATE_BRANCH"; then
_log "warning" "create_branch has been removed in v6. It does not have any effect anymore.";
fi
_check_if_git_is_available
_switch_to_repository