Skip to content

Instantly share code, notes, and snippets.

@wayneashleyberry
Created August 17, 2026 07:59
Show Gist options
  • Select an option

  • Save wayneashleyberry/7f5126c4be3b632730ca9f3ed5f85e49 to your computer and use it in GitHub Desktop.

Select an option

Save wayneashleyberry/7f5126c4be3b632730ca9f3ed5f85e49 to your computer and use it in GitHub Desktop.
function isgo127releasedyet
set -l url "https://tip.golang.org/doc/go1.27"
set -l search_text "Go 1.27 is not yet released"
if curl -sL -H "Cache-Control: no-cache, no-store, must-revalidate" -H "Pragma: no-cache" $url | string match -q "*$search_text*"
echo no
else
echo yes
end
# Fetch open release-blocker issues and format with OSC 8 clickable ANSI escape sequences
gh issue list \
--repo golang/go \
--state open \
--milestone Go1.27 \
--label release-blocker \
--json number,title,url \
--jq '.[] | "\u001b]8;;\(.url)\u001b\\\\#\(.number) - \(.title)\u001b]8;;\u001b\\\\"'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment