Add git-auto-commit to warning text

This commit is contained in:
Stefan Zweifel 2025-05-03 16:03:43 +02:00
parent e7955f713c
commit 8ddf02de71
No known key found for this signature in database
2 changed files with 6 additions and 6 deletions

View File

@ -28,15 +28,15 @@ _log() {
_main() { _main() {
if "$INPUT_SKIP_FETCH"; then if "$INPUT_SKIP_FETCH"; then
_log "warning" "skip_fetch has been removed in v6. It does not have any effect anymore."; _log "warning" "git-auto-commit: skip_fetch has been removed in v6. It does not have any effect anymore.";
fi fi
if "$INPUT_SKIP_CHECKOUT"; then if "$INPUT_SKIP_CHECKOUT"; then
_log "warning" "skip_checkout has been removed in v6. It does not have any effect anymore."; _log "warning" "git-auto-commit: skip_checkout has been removed in v6. It does not have any effect anymore.";
fi fi
if "$INPUT_CREATE_BRANCH"; then if "$INPUT_CREATE_BRANCH"; then
_log "warning" "create_branch has been removed in v6. It does not have any effect anymore."; _log "warning" "git-auto-commit: create_branch has been removed in v6. It does not have any effect anymore.";
fi fi
_check_if_git_is_available _check_if_git_is_available

View File

@ -1176,7 +1176,7 @@ END
assert_success assert_success
assert_line "::warning::skip_fetch has been removed in v6. It does not have any effect anymore." assert_line "::warning::git-auto-commit: skip_fetch has been removed in v6. It does not have any effect anymore."
assert_line "::warning::skip_checkout has been removed in v6. It does not have any effect anymore." assert_line "::warning::git-auto-commit: skip_checkout has been removed in v6. It does not have any effect anymore."
assert_line "::warning::create_branch has been removed in v6. It does not have any effect anymore." assert_line "::warning::git-auto-commit: create_branch has been removed in v6. It does not have any effect anymore."
} }