Created
August 17, 2026 07:59
-
-
Save wayneashleyberry/7f5126c4be3b632730ca9f3ed5f85e49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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