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
fix: Make issue processing in release workflow more robust
- Use basic grep instead of -P flag for better compatibility
- Add error handling for non-existent issues
- Make issue processing optional and not fail if no issues found
- Add proper error handling for GitHub CLI operations
- Improve logging for better debugging
gh issue comment "$issue_number" --body "🎉 This issue has been released in version $RELEASE_VERSION."
155
-
gh issue close "$issue_number"
159
+
gh issue edit "$issue_number" --add-label "released" || echo "Failed to add label to issue #$issue_number"
160
+
gh issue comment "$issue_number" --body "🎉 This issue has been released in version $RELEASE_VERSION." || echo "Failed to comment on issue #$issue_number"
161
+
gh issue close "$issue_number" || echo "Failed to close issue #$issue_number"
0 commit comments