github.com/abayer/test-infra@v0.0.5/prow/external-plugins/cherrypicker/README.md (about) 1 # Cherrypicker 2 3 Cherrypicker is an external prow plugin that can also run as a standalone bot. 4 It automates cherry-picking merged PRs into different branches. Cherrypicks are 5 triggered from comments in Github PRs that need to be cherrypicked. 6 7 ``` 8 /cherrypick release-1.10 9 ``` 10 11 The above comment will result in opening a new PR against the `release-1.10` branch 12 once the PR where the comment was made gets merged or is already merged. 13 14 The bot uses its own fork to push patches that need to be cherry-picked and opens 15 PRs out of those patches. The fork is created automatically by the bot so there is 16 no need to set it up manually. 17 18 Required scopes for the oauth token that need to be used are `read:org` and `repo`.