You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "Created back-merge PR from ${BACKMERGE_BRANCH} into dev."
114
+
STATUS=$?
115
+
if [ "${STATUS}" -eq 0 ]; then
116
+
echo "Created back-merge PR from ${BACKMERGE_BRANCH} into dev."
117
+
fi
118
+
fi
119
+
set -e
120
+
121
+
if [ "${STATUS}" -ne 0 ]; then
122
+
echo "::warning::Back-merge branch ${BACKMERGE_BRANCH} was pushed, but this workflow token is not permitted to create or update pull requests. Open or refresh the PR manually."
111
123
fi
112
124
113
125
- name: Collect back-merge debug artifacts on failure
0 commit comments