We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d009c78 commit da2d82bCopy full SHA for da2d82b
entrypoint.sh
@@ -4,8 +4,8 @@ set -e
4
5
echo
6
echo " 'Nightly Merge Action' is using the following input:"
7
-echo " - source_branch = '$SOURCE_BRANCH'"
8
-echo " - target_branch = '$TARGET_BRANCH'"
+echo " - source_branch = '$INPUT_SOURCE_BRANCH'"
+echo " - target_branch = '$INPUT_TARGET_BRANCH'"
9
echo " - allow_ff = $INPUT_ALLOW_FF"
10
echo " - allow_git_lfs = $INPUT_GIT_LFS"
11
echo " - ff_only = $INPUT_FF_ONLY"
@@ -49,12 +49,12 @@ git config --global user.email "$INPUT_USER_EMAIL"
49
50
set -o xtrace
51
52
-git checkout $TARGET_BRANCH
+git checkout $INPUT_TARGET_BRANCH
53
54
git fetch
55
56
# Do the merge
57
-git merge origin/$SOURCE_BRANCH
+git merge origin/$INPUT_SOURCE_BRANCH
58
59
# Push the branch
60
git push
0 commit comments