How to add commit from develop to release branch

Checkout release branch:

git checkout releases/1.2.3

Create branch from release branch:

git checkout -b feature/my-branch

Cherry-pick commit from develop (-x will add info about source commit):

git cherry-pick -x commit-hash
git push --set-upstream origin feature/my-branch

Create PR from feature branch to release branch