Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,6 @@ if [[ -z $backport_issue_url ]]; then
--body "Backport $ORIG_ISSUE_URL to branch $BACKPORT_BRANCH. $additional_body"
else
msg="Backport issue already exists: $backport_issue_url"
echo "$msg"
echo "BACKPORT_ERROR=$msg" >>"$GITHUB_ENV"
fi
2 changes: 1 addition & 1 deletion .github/workflows/scripts/backport-command/gh_wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ gh_issue_url() {
done
shift $((OPTIND - 1))

search=${search-"[$BACKPORT_BRANCH] $ORIG_TITLE in:title"}
search=${search-"\"[$BACKPORT_BRANCH] $ORIG_TITLE\" in:title"}
milestone=${milestone-$TARGET_MILESTONE}
repo=${repo-$TARGET_ORG/$TARGET_REPO}

Expand Down
Loading