Open cfm opened 1 month ago
Ready for review
The much-loved backport.py script makes 2.5 assumptions that do not hold for complex pull requests like #7143, which we fix here:
backport.py
gh api
git cherry-pick -x
git [cherry-pick → merge] -m
Depending on the state of your local release/2.10.1 branch, you can replicate #7257 with:
release/2.10.1
$ git branch -D release/2.10.1 $ git checkout -b release/2.10.1 release/2.10.0 $ utils/backport.py 7143 2.10.1 origin --skip 6e3d7bed17537fa8f69f941f21a8eec34e8da113
Development-only; no deployment considerations.
Currently blocked on #7339.
Rebased from develop after #7339.
develop
Status
Ready for review
Description of Changes
The much-loved
backport.py
script makes 2.5 assumptions that do not hold for complex pull requests like #7143, which we fix here:gh api
) in the pull request.git cherry-pick -x
(i.e., there are no merge commits requiringgit [cherry-pick → merge] -m
).Testing
Depending on the state of your local
release/2.10.1
branch, you can replicate #7257 with:Deployment
Development-only; no deployment considerations.