在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用release
星标16
分支0
更新时间2026年3月25日 11:40
Create a release PR with version bump and changelog
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Create a release PR with version bump and changelog
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | release |
| description | Create a release PR with version bump and changelog |
| disable-model-invocation | true |
| argument-hint | version |
Create a PR with branch name release/v$ARGUMENTS containing only these changes:
pyproject.tomlTONGUES_VERSION matches between .github/workflows/ci.yml and .github/workflows/release.ymlREADME.md with download links (keep the previous version column)No other changes—no refactors, no fixes, no documentation updates.
Generate release notes from commits since the last tag (or all commits if no tags):
git log $(git describe --tags --abbrev=0 2>/dev/null || git rev-list --max-parents=0 HEAD)..HEAD --oneline
Focus on what matters to users:
Put the changelog in the PR body. The workflow extracts it for the GitHub release.
Run just check before pushing. PR title: Release v$ARGUMENTS
Tag, push, and clean up:
git checkout main && git pull && git tag v$ARGUMENTS && git push --tags && git push origin --delete release/v$ARGUMENTS
The tag triggers a workflow that creates the GitHub release with transpiled binaries (parable.py, parable.js).