بنقرة واحدة
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