Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
style: apply standard go fmt formatting
  • Loading branch information
Mallikarjunadevops committed Mar 28, 2026
commit 164455eec74bb60a6d07caf9d27cb8f662edf4b4
34 changes: 31 additions & 3 deletions fetch_issues.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,40 @@
import urllib.request, json
from datetime import datetime, timezone, timedelta

req = urllib.request.Request("https://api.github.com/repos/devspace-sh/devspace/issues?state=open&sort=created&direction=desc&per_page=40")
req.add_header('User-Agent', 'python-urllib')

try:
with urllib.request.urlopen(req) as response:
data = json.loads(response.read().decode())

three_months_ago = datetime.now(timezone.utc) - timedelta(days=90)

print("===== RECENT OPEN ISSUES (NO PRS, UNASSIGNED) =====")
count = 0
for issue in data:
if issue['number'] in [3179, 3174, 3106]:
print(f"--- ISSUE #{issue['number']} ---")
print(issue['body'][:1000])
# Skip if PR
if "pull_request" in issue:
continue

# Skip if assigned
if issue.get("assignees"):
continue

# Check date
created_at = datetime.strptime(issue['created_at'], "%Y-%m-%dT%H:%M:%SZ").replace(tzinfo=timezone.utc)
if created_at < three_months_ago:
continue

print(f"\n[{issue['number']}] {issue['title']} (Created: {issue['created_at'].split('T')[0]})")
print(f"URL: {issue['html_url']}")
# Print first 200 chars of body
body_preview = (issue['body'] or "")[:200].replace('\n', ' ').replace('\r', '')
print(f"Excerpt: {body_preview}...")

count += 1
if count >= 10:
break

except Exception as e:
print(e)
2 changes: 1 addition & 1 deletion pkg/devspace/helm/v3/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
devspacecontext "github.com/loft-sh/devspace/pkg/devspace/context"
dependencyutil "github.com/loft-sh/devspace/pkg/devspace/dependency/util"
"github.com/loft-sh/devspace/pkg/devspace/helm/generic"
"github.com/loft-sh/devspace/pkg/devspace/helm/downloader"
"github.com/loft-sh/devspace/pkg/devspace/helm/generic"
"github.com/loft-sh/devspace/pkg/devspace/helm/types"
"github.com/loft-sh/devspace/pkg/util/log"
"github.com/pkg/errors"
Expand Down