File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 21
21
export GIT_COMMITTER_NAME=GitHub
22
22
export GIT_COMMITTER_EMAIL=noreply@github.com
23
23
git fetch --unshallow origin " $INPUT_BASE_REF " ||
24
- report_failure " Can't get history for base_ref ($INPUT_BASE_REF ). Please contact support"
24
+ report_failure " Can't get history for base_ref ($INPUT_BASE_REF ). Please contact support for $GITHUB_ACTION_REPOSITORY "
25
25
GITHUB_BASE_SHA=$( git rev-parse FETCH_HEAD)
26
26
27
27
git -c advice.detachedHead=false checkout " $GITHUB_BASE_SHA " || {
@@ -30,7 +30,7 @@ git -c advice.detachedHead=false checkout "$GITHUB_BASE_SHA" || {
30
30
}
31
31
32
32
git fetch origin " $INPUT_HEAD_REF " ||
33
- report_failure " Can't get head_ref ($INPUT_HEAD_REF ). Please contact support"
33
+ report_failure " Can't get head_ref ($INPUT_HEAD_REF ). Please contact support for $GITHUB_ACTION_REPOSITORY "
34
34
35
35
GITHUB_HEAD_SHA=$( git rev-parse FETCH_HEAD)
36
36
git merge -m " Merge $GITHUB_HEAD_SHA into $GITHUB_BASE_SHA " FETCH_HEAD ||
You can’t perform that action at this time.
0 commit comments