원클릭으로
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.