fix: remove state filter from Method 1 sub-issue discovery
- Removed state=closed filter so all issues with "Decomposed from #N" are found - Per-issue state check in all_subissues_closed() correctly handles open/closed
This commit is contained in:
parent
1c3e3cd660
commit
474b6a71d0
1 changed files with 1 additions and 1 deletions
|
|
@ -430,7 +430,7 @@ get_vision_subissues() {
|
||||||
# Method 1: Find issues with "Decomposed from #N" in body
|
# Method 1: Find issues with "Decomposed from #N" in body
|
||||||
local issues_json
|
local issues_json
|
||||||
issues_json=$(curl -sf -H "Authorization: token ${FORGE_TOKEN}" \
|
issues_json=$(curl -sf -H "Authorization: token ${FORGE_TOKEN}" \
|
||||||
"${FORGE_API}/issues?state=closed&limit=100" 2>/dev/null) || true
|
"${FORGE_API}/issues?limit=100" 2>/dev/null) || true
|
||||||
|
|
||||||
if [ -n "$issues_json" ] && [ "$issues_json" != "null" ]; then
|
if [ -n "$issues_json" ] && [ "$issues_json" != "null" ]; then
|
||||||
while IFS= read -r subissue_num; do
|
while IFS= read -r subissue_num; do
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue