d4859ac883
The older version of gh CLI in GitHub Actions runners doesn't support the --json flag, causing PR creation to fail. Changes: - Removed --json flag from gh pr create - Removed jq parsing (not needed) - Use exit code to detect success/failure - Simplified PR existence check - More compatible with older gh CLI versions This fixes the error: ❌ PR creation failed: unknown flag: --json The workflow will now: ✅ Create PRs successfully ✅ Handle duplicates gracefully ✅ Work with both old and new gh CLI versions