13 lines
228 B
Bash
13 lines
228 B
Bash
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
set -u
|
|
|
|
LOCAL="$DRONE_BRANCH"
|
|
[ "$LOCAL" = "core" ] && UPSTREAM=origin/devos || UPSTREAM=origin/core
|
|
|
|
git fetch --all
|
|
git checkout --track origin/"$LOCAL"
|
|
git merge "$UPSTREAM"
|
|
git push origin "$LOCAL"
|