بنقرة واحدة
creating-release-issue
Use when preparing a QueenCam release and the user requests the release task or release issue.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when preparing a QueenCam release and the user requests the release task or release issue.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | creating-release-issue |
| description | Use when preparing a QueenCam release and the user requests the release task or release issue. |
Create one release issue in the repository's required format. The release workflow owns branch creation, version updates, merges, back-merge, and tagging.
v1.1.9 before any GitHub write./start vX.Y.Z or any other issue comment./start triggers .github/workflows/release.yml. That workflow creates release/vX.Y.Z, updates app/build versions and CHANGELOG, merges into main and develop, and pushes the tag.
Read the repository instructions, .github/ISSUE_TEMPLATE/release.yml, and .github/workflows/release.yml.
Require a clean working tree, then update develop:
git status --short --branch
git switch develop
git pull --ff-only origin develop
gh issue list --state all --search '🎤 [Release] vX.Y.Z in:title'
gh pr list --state open --base develop
Replace vX.Y.Z with the confirmed version. Return a matching issue. Confirm with the user if open PRs targeting develop affect the release scope.
Use title 🎤 [Release] vX.Y.Z and every field from the release template:
vX.Y.Z 릴리즈X.Y.Z/start remains unchecked없음 when unspecified없음 when unspecifiedcc. @Jeongin-c (PM)Query gh label list --search release. Add the exact release label only when it exists; otherwise create the issue without a label.
gh issue view ISSUE_NUMBER --json number,title,state,url,comments
git status --short --branch
Require an open issue with no comments and a clean develop working tree. Return the version and issue URL, then stop.
| Mistake | Correct action |
|---|---|
| Guessing the version | Ask for it. |
| Creating a release PR | Let the workflow merge directly. |
| Creating a back-merge PR | Let the workflow merge back to develop. |
Writing /start | Keep deployment triggering outside this skill. |