一键导入
cherry-pick
Cherry-pick a PR to a target version branch
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Cherry-pick a PR to a target version branch
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Reproduce a Vaadin Flow component bug from a GitHub issue in vaadin/flow-components or a component-specific issue in vaadin/flow. Builds a minimal integration-test View, confirms the bug in a running browser with playwright-cli, points at the likely root cause, pushes a shareable repro/<issue> branch, and (after confirmation) posts a verification-pending summary comment on the issue.
Read these rules whenever you add, modify, or review `bind*` methods (e.g. `bindError`, `bindEnabled`, `bindVisible`), or work with `Signal` or `SignalPropertySupport` types in component code.
基于 SOC 职业分类
| name | cherry-pick |
| description | Cherry-pick a PR to a target version branch |
| argument-hint | <pr-url> <target-branch> |
| disable-model-invocation | true |
| allowed-tools | Read, Edit, Bash(git:*), Bash(gh:*), Bash(mvn:*) |
Cherry-pick the PR with the GitHub URL $0 to the $1 branch. This command is only run when automated cherry-picking failed, so expect merge conflicts.
Gather PR information using gh pr view:
Prepare branches:
git fetch origin <source-branch>git fetch origin $1--no-track: git checkout -b <branch-name> origin/$1 --no-trackfix/click-event-listener-$1)Cherry-pick the merge commit:
git cherry-pick -m 1 <merge-commit-sha>Verify the changes:
mvn spotless:applyCommit the resolved cherry-pick:
Push and create PR:
gh pr create---) surrounded by new lines> )Update original PR:
need to pick manually $1, remove itcherry-picked-$1 to the original PRYou can use the gh CLI tool for GitHub operations throughout these steps.