Problem
The release analyzer script uses the wrong default API endpoint URL.
Current (incorrect):
const url = process.env.OPENCODE_API_URL || "https://api.openai.com/v1/responses";
Expected (correct):
const url = process.env.OPENCODE_API_URL || "https://opencode.ai/zen/v1/responses";
Impact
- The release workflow will fail when trying to analyze commits
- API calls will be sent to the wrong endpoint
Files to Fix
scripts/detect-release-type.mjs (line ~136)
docs/development/ci.md (line ~36 - update documentation)
References
Problem
The release analyzer script uses the wrong default API endpoint URL.
Current (incorrect):
Expected (correct):
Impact
Files to Fix
scripts/detect-release-type.mjs(line ~136)docs/development/ci.md(line ~36 - update documentation)References