Welcome to apollo-11 Discussions! #1
Replies: 1 comment
|
That fatal: morestack on g0 error is a known Go runtime issue, often triggered by memory/stack constraints in unusual environments like iSH (Alpine on iOS) or when the Go binary is built with certain flags. 🛠️ Workarounds to authenticate and list issues Option 1 – Use a Personal Access Token directly with git (no gh) # Clone using the token in the URL (replace YOUR_TOKEN)
git clone https://YOUR_TOKEN@github.com/devops2626/apollo-11.gitBut you already have the repo – you just need to list issues. You can use the GitHub API with curl: curl -H "Authorization: token YOUR_TOKEN" \
https://api.github.com/repos/devops2626/apollo-11/issuesOption 2 – Set GITHUB_TOKEN environment variable and retry gh export GITHUB_TOKEN=your_personal_access_token
gh issue list --state openSometimes this bypasses the interactive prompt that triggers the Go error. Option 3 – Use the web browser Since this is a private repo, you must have access to view it on GitHub. Just open: 📝 About the open issues Because the repo is private, I can’t see them for you. But here’s what you can do once you get access: · List via API (with your token): curl -H "Authorization: token $GITHUB_TOKEN" \
https://api.github.com/repos/devops2626/apollo-11/issues?state=open· If you need to contribute, look for issues tagged good first issue or help wanted. 🔧 Fixing the Go error (optional) If you want to make gh work, try: · Update gh to the latest version: apk add --upgrade gh (or brew upgrade gh if on macOS). But honestly, the API + curl approach is simpler and more reliable in this iSH environment. Next steps
Once you have that list, share it back here – I’ll help you summarize the problem statements and propose a thesis/solution for each. Let me know how it goes! 🚀 |
Uh oh!
There was an error while loading. Please reload this page.
👋 Welcome!
We’re using Discussions as a place to connect with other members of our community. We hope that you:
build together 💪.
To get started, comment below with an introduction of yourself and tell us about what you do with this community.
All reactions