Files
InfiniteAPI/.github/workflows
Claude 7407b7ab49 fix(ci): address Copilot PR #69 review concerns - improve workflow reliability
ISSUES IDENTIFIED BY COPILOT:

1. **PR URL Detection Logic Issue (Lines 149-153)**
   - Using '|| true' suppressed errors and captured stderr
   - String matching for "github.com" could produce false positives
   - No structured validation of PR creation success

2. **Auto-merge Fallback Logic Problem (Lines 160-162)**
   - Fallback merge without --auto would fail immediately
   - Required status checks haven't completed when PR just created
   - Branch protection rules would block immediate merge

3. **Insufficient Token Permissions Documentation (Lines 15-17)**
   - Default GITHUB_TOKEN may lack auto-merge permissions
   - No guidance on alternative authentication methods

SOLUTIONS APPLIED:

 **Issue #1 - Reliable PR Detection:**
   - Use '--json url,number' flag for structured output
   - Parse JSON with jq for reliable success detection
   - Extract PR URL and number separately
   - Proper error handling for duplicate PRs
   - Check for existing PRs if creation fails

 **Issue #2 - Remove Dangerous Fallback:**
   - Removed immediate merge fallback (gh pr merge without --auto)
   - Keep only --auto flag which queues merge when checks pass
   - Added informative error messages explaining why auto-merge might fail
   - Better user guidance on what to do when auto-merge unavailable

 **Issue #3 - Document Permission Requirements:**
   - Added comment explaining token permission requirements
   - Documented when PAT or GitHub App token might be needed
   - Referenced in error messages for troubleshooting

IMPROVEMENTS:

- Better error messages with emojis for visual clarity
- Extracts both URL and PR number for better logging
- Checks for existing PRs on creation failure
- Explains common reasons for auto-merge failures
- More robust error handling throughout

TESTING:
- YAML syntax validated
- JSON parsing logic tested
- All Copilot concerns addressed

Related: PR #69 code review comments
https://claude.ai/code/session_0149ZKk2ygmKCJTGu39Mr8oH
2026-02-03 01:13:32 +00:00
..
2025-07-18 23:20:24 +03:00