一键导入
git-release
Create consistent releases and changelogs using semantic versioning and conventional commits
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create consistent releases and changelogs using semantic versioning and conventional commits
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Cloud Build CI/CD patterns with Terraform-via-Cloud-Build workflows
Podman container operations best practices and patterns
Issue-driven DevOps workflow with pre-flight checks, workspace isolation, and PR lifecycle
Google Cloud Platform operations patterns and best practices
Best practices for creating and reviewing pull requests
Makefile and modular scripts conventions for DevOps projects
| name | git-release |
| description | Create consistent releases and changelogs using semantic versioning and conventional commits |
gh release create commandUse this skill when preparing a tagged release. It helps ensure consistent versioning and comprehensive changelogs.
Follow semantic versioning (MAJOR.MINOR.PATCH):
MAJOR version bump when:
BREAKING CHANGE: in the body! suffix (e.g., feat!: remove API)MINOR version bump when:
feat: or feature: typesPATCH version bump when:
fix:, perf:, or docs: typesStructure release notes as:
## What's Changed
### Breaking Changes
- Description of breaking change (#PR)
### New Features
- feat: description (#PR)
### Bug Fixes
- fix: description (#PR)
### Other Changes
- chore/refactor/docs: description (#PR)
**Full Changelog**: https://github.com/owner/repo/compare/v0.1.0...v0.2.0
gh release list --limit 1 to find the latest release taggit log <last-tag>..HEAD --oneline to see commits since last releasegh release create-alpha.N, -beta.N, or -rc.N suffixes for pre-releases--prerelease flagv1.0.0-beta.1, v2.0.0-rc.1