...
Syntax
/backport [disable] <repository> <repo> [<branch>]
/backport [disable] [<repository><repo>]:<branch>
Description
/backport used in open pull request
...
Applies the commit this pull request resulted in onto the given branch in the given repository and then shows to a link to create a pull request with the changes. The In the first syntax, the branch is optional, if not given, the default for the repository is used. In the second syntax, repository repo is optional, if not given, the same repository where the command is issued is used. If the commit does not apply then a message is shown describing the files containing conflicts. See Backports.
...
The pull request will be created from a branch in a shared fork of the target repository. On GitHub, this repository is owned by the openjdk-bots organization. The first time you issue the /backport command for a specific target repository, you will receive an invitation to collaborate in the fork repository. This invitation needs to be accepted to be able to further update the backport pull request with more changes.
Examples
/backport :jdk23
/backport jdk16u
/backport jfx jfx14
/backport jdk17u-dev pr/4711
/backport disable jdk16u
/backport jfx:jfx22
/backport disable :jfx22
...