在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用draft-release
星标1
分支1
更新时间2026年7月7日 13:11
Draft a new release of ghactivities.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Draft a new release of ghactivities.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | draft-release |
| description | Draft a new release of ghactivities. |
| targets | ["*"] |
First, let's work on the following steps.
main branch and pull the latest changes. If not on the main branch, switch to it.What's Changed, Contributors and Full Changelog are needed../tmp/release-notes/*.md will be used as the release notes.Then, from $ARGUMENTS, get the new version without the v prefix and assign it to $new_version. For example, if $ARGUMENTS is "v1.0.0", the new version is "1.0.0".
If $ARGUMENTS is empty, determine the new version automatically by analyzing the diff and applying semantic-versioning rules: a breaking change bumps the major, a new feature bumps the minor, and a bug fix bumps the patch.
Let's resume the release process.
git pull.git checkout -b release/v${new_version}.package.json to ${new_version} with pnpm version ${new_version} --no-git-tag-version (or edit the version field directly). The CLI reads its version from package.json, so no other file needs to change.pnpm run cicheck. If the checks fail, fix the code until they pass.git add, git commit and git push.ghactivities --version (or pnpm dev --version) reports ${new_version}.gh pr create targeting the main branch.gh release create v${new_version} --draft --title v${new_version} --notes-file ./tmp/release-notes/*.md on the github.com/dyoshikawa/ghactivities repository. Creating a draft (instead of publishing) lets you review it before the release workflow publishes to npm.