mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
15 lines
371 B
Bash
Executable File
15 lines
371 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
source ./script/ci/includes.sh
|
|
|
|
echo "--- Checking if master has already been merged"
|
|
succeed_if_master_merged
|
|
|
|
echo "--- Merging master into this branch"
|
|
git checkout $BUILDKITE_BRANCH
|
|
git merge origin/$BUILDKITE_BRANCH
|
|
git merge origin/master -m "Auto-merge from CI [skip ci]"
|
|
git push origin $BUILDKITE_BRANCH
|
|
git checkout origin/$BUILDKITE_BRANCH
|