feat: 优化分支发布策略 - 分离test和develop职责
主要变更: - alpha.yml: 修改触发分支从develop改为test分支 - snapshot.yml: 强化develop专用职责,优化描述信息 - 创建test分支: 专门用于alpha版本发布 分支策略优化: - develop → @snapshot (开发快照,高频更新) - test → @alpha (精选功能测试版本) - staging → @beta (稳定预览版本) - main → @latest (正式发布版本) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
5
.github/workflows/snapshot.yml
vendored
5
.github/workflows/snapshot.yml
vendored
@ -83,7 +83,7 @@ jobs:
|
||||
base: 'develop'
|
||||
});
|
||||
|
||||
const comment = `🚀 **Snapshot版本已发布!**
|
||||
const comment = `📸 **Snapshot版本已发布!**
|
||||
|
||||
📦 版本号: \`${version}\`
|
||||
🔗 安装命令: \`npx dpml-prompt@${version} <command>\`
|
||||
@ -96,7 +96,8 @@ jobs:
|
||||
npx dpml-prompt@${version} action <roleId>
|
||||
\`\`\`
|
||||
|
||||
💡 你可以使用这个snapshot版本测试最新的develop分支功能。`;
|
||||
⚡ **Snapshot定位**: 开发快照版本,包含最新代码变更,供快速验证和开发测试使用。
|
||||
💡 如需稳定测试版本,推荐使用 \`@alpha\` 或 \`@beta\`。`;
|
||||
|
||||
// 为每个相关PR添加评论
|
||||
for (const pr of prs) {
|
||||
|
||||
Reference in New Issue
Block a user