73097aa39d
* add checksums for 1.15.4 and 1.15.5 and set 1.15.5 to default * Upgrade nodelocaldns to 1.15.5 (#5191) * do not rebase from master for 2.11 release branch
9 lines
233 B
Bash
Executable file
9 lines
233 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
# Rebase PRs on master to get latest changes
|
|
if [[ $CI_COMMIT_REF_NAME == pr-* ]]; then
|
|
git config user.email "ci@kubespray.io"
|
|
git config user.name "CI"
|
|
git pull --rebase origin release-2.11
|
|
fi
|