forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autobump-generic.sh
executable file
·65 lines (57 loc) · 1.91 KB
/
autobump-generic.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash
# Copyright 2018 The Kubernetes Authors.
# Copyright 2020 The KubeVirt Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Taken from https://github.com/kubernetes/test-infra/blob/4d7f26e59a5e186eef3a7de55486b7a40bbd79d7/hack/autodeps.sh
# and modified for kubevirt.
set -o nounset
set -o errexit
set -o pipefail
cd $(git rev-parse --show-toplevel)
if [[ $# -lt 2 ]]; then
echo "Usage: $(basename "$0") <github-login> </path/to/github/token> [git-name] [git-email] [target]" >&2
exit 1
fi
user=$1
token=$2
shift 2
if [[ $# -ge 2 ]]; then
echo "git config user.name=$1 user.email=$2..." >&2
git config user.name "$1"
git config user.email "$2"
shift 2
fi
if ! git config user.name &>/dev/null && git config user.email &>/dev/null; then
echo "ERROR: git config user.name, user.email unset. No defaults provided" >&2
exit 1
fi
make $@
git add -A
if git diff --name-only --exit-code HEAD; then
echo "Nothing changed" >&2
exit 0
fi
make test
title="Run make $@"
git commit -s -m "${title}"
git push -f "https://${user}@github.com/${user}/kubevirt.git" HEAD:autoupdate-$@
echo "Creating PR to merge ${user}:autoupdate into main..." >&2
pr-creator \
--github-token-path="${token}" \
--org=kubevirt --repo=kubevirt --branch=main \
--title="${title}" --match-title="${title}" \
--body="Automatic run of \"$@\". Please review" \
--source="${user}":autoupdate-$@ \
--confirm