We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a59ec6c commit d5da5a2Copy full SHA for d5da5a2
git/git-merge-customizations
@@ -14,5 +14,9 @@ fi
14
echo "Resetting branch to '$UPSTREAM_BRANCH'..."
15
git reset --hard $UPSTREAM_BRANCH
16
17
-echo "Merging '$CUSTOMIZATION_BRANCHES' into '$CURRENT_BRANCH'..."
18
-git for-each-ref --format='%(refname)' refs/remotes/internal/ort-pipeline-customizations | xargs -n1 git merge --no-ff
+echo "Merging the following branches into '$CURRENT_BRANCH'..."
+for BRANCH in $CUSTOMIZATION_BRANCHES; do
19
+ echo $BRANCH
20
+done
21
+
22
+git merge --no-ff $CUSTOMIZATION_BRANCHES
0 commit comments