ci: the "master" branch got renamed to "devel"

Closes: #1193
Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
Niels de Vos
2021-02-25 09:23:57 +01:00
committed by mergify[bot]
parent 92913912ef
commit 1c2974d49e
11 changed files with 23 additions and 23 deletions

View File

@ -6,7 +6,7 @@
# Usage: scripts/container-needs-rebuild.sh {test|devel} [git-since]
#
# - flavour is either 'test' or 'devel'
# - the optional 'git-since' points to a git reference, 'origin/master' if
# - the optional 'git-since' points to a git reference, 'origin/devel' if
# not set
#
# Returns 0 in case changes do not affect the container image.
@ -23,7 +23,7 @@ fi
GIT_SINCE="${2}"
if [ -z "${GIT_SINCE}" ]; then
GIT_SINCE='origin/master'
GIT_SINCE='origin/devel'
fi
MODIFIED_FILES=$(git diff --name-only "${GIT_SINCE}")

View File

@ -3,7 +3,7 @@
GIT_SINCE="${1}"
if [ -z "${GIT_SINCE}" ]; then
GIT_SINCE='origin/master'
GIT_SINCE='origin/devel'
fi
CHANGED_FILES=$(git diff --name-only "${GIT_SINCE}")