feat: 添加 launch 发布评审命令#6
Open
huangdijia wants to merge 2 commits into
Open
Conversation
新增 tapd launch 子命令,支持发布评审的完整生命周期管理: list/count/create/update/templates/fields。 go.mod 中保留了本地 replace 指令(../tapd-sdk-go),合并前需切回发布版本。
There was a problem hiding this comment.
Pull request overview
本 PR 为 tapd-ai-cli 新增 tapd launch 子命令,用于对 TAPD 的“发布评审(launch form)”进行全生命周期管理,并补充了相应的单元测试与 README 使用说明。
Changes:
- 新增
tapd launch:支持list/count/create/update/templates/fields子命令 - README 增加
launch示例与命令树展示 - 增加
launch命令的请求参数与路由断言测试
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | 增加 tapd launch 的示例与命令树入口 |
| internal/cmd/launch.go | 实现 launch 命令及其各子命令与参数绑定 |
| internal/cmd/launch_test.go | 覆盖 create/update/list/count/templates/fields 的请求断言测试 |
| go.sum | 因本地 replace 变更导致依赖校验和条目变化 |
| go.mod | 增加了本地 replace(需要在合并前移除/回退到发布版本) |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 969ee2b93e
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
新增 tapd launch 子命令,支持发布评审的完整生命周期管理:
list/count/create/update/templates/fields。
go.mod 中保留了本地 replace 指令(../tapd-sdk-go),合并前需切回发布版本。