9 lines
227 B
Bash
Executable file
9 lines
227 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 master
|
|
fi
|