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 "Next branch is ${AHEAD_COUNT} commits ahead of main"
75
+
echo "Next branch is ${BEHIND_COUNT} commits behind main"
76
+
77
+
if [ "$BEHIND_COUNT" -gt 0 ]; then
78
+
echo "::error::❌ Next branch is ${BEHIND_COUNT} commits behind main. Please update next branch with the latest changes from main before creating a release."