mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-05 06:57:26 +00:00
In bare-metal machines the git tree might get on unstable state with the previous rebase left halfway. So let's attempt to abort any rebase before. Fixes #8318 Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
40 lines
861 B
Bash
Executable File
40 lines
861 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2023 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
function add_kata_bot_info() {
|
|
echo "Adding user name and email to the local git repo"
|
|
|
|
git config user.email "katacontainersbot@gmail.com"
|
|
git config user.name "Kata Containers Bot"
|
|
}
|
|
|
|
function rebase_atop_of_the_latest_target_branch() {
|
|
if [ -n "${TARGET_BRANCH}" ]; then
|
|
echo "Rebasing atop of the latest ${TARGET_BRANCH}"
|
|
# Recover from any previous rebase left halfway
|
|
git rebase --abort 2> /dev/null || true
|
|
git rebase origin/${TARGET_BRANCH}
|
|
fi
|
|
}
|
|
|
|
function main() {
|
|
action="${1:-}"
|
|
|
|
add_kata_bot_info
|
|
|
|
case "${action}" in
|
|
rebase-atop-of-the-latest-target-branch) rebase_atop_of_the_latest_target_branch;;
|
|
*) >&2 echo "Invalid argument"; exit 2 ;;
|
|
esac
|
|
}
|
|
|
|
main "$@"
|