ワンクリックで
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