mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-13 21:34:40 +03:00
With the base ref (aka: target branch) available, we don't need to guess stuff from the branch name
7 lines
102 B
Bash
Executable File
7 lines
102 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
|
|
if [ "${GITHUB_BASE_REF}" ]; then
|
|
git pull --rebase origin $GITHUB_BASE_REF
|
|
fi
|