A GitHub CLI extension for managing tags.
gh extension install givensuman/gh-taggh tag list
gh tag list --limit 50
gh tag list --search v1.
gh tag list --jsongh tag create v1.2.3
gh tag create v1.2.3 --commit abc1234
gh tag create v1.2.3 --message "Release v1.2.3"gh tag delete v1.2.3
gh tag delete v1.2.3 --confirm
gh tag delete v1.2.3 --bothgh tag view v1.2.3All commands accept --repo owner/repo to target a repository other than the one
detected from the current directory:
gh tag list --repo cli/cli