원클릭으로
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