Docs: No need to follow up on backport PRs (#47616)
Also tidy up `notes` section into a single box
This commit is contained in:
parent
6229f89369
commit
166e84b9c4
1 changed files with 20 additions and 18 deletions
|
@ -4,7 +4,8 @@
|
|||
The Ansible Development Process
|
||||
*******************************
|
||||
|
||||
.. contents:: Topics
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
This section discusses how the Ansible development and triage process works.
|
||||
|
||||
|
@ -33,20 +34,17 @@ After the pull request submitted to Ansible for the ``devel`` branch is
|
|||
accepted and merged, the following instructions will help you create a
|
||||
pull request to backport the change to a previous stable branch.
|
||||
|
||||
.. note::
|
||||
|
||||
These instructions assume that ``stable-2.5`` is the targeted release
|
||||
branch for the backport.
|
||||
We do **not** backport features.
|
||||
|
||||
.. note::
|
||||
|
||||
These instructions assume that ``https://github.com/ansible/ansible.git``
|
||||
is configured as a ``git remote`` named ``upstream``. If you do not use
|
||||
These instructions assume that:
|
||||
|
||||
* ``stable-2.7`` is the targeted release branch for the backport
|
||||
* ``https://github.com/ansible/ansible.git`` is configured as a
|
||||
``git remote`` named ``upstream``. If you do not use
|
||||
a ``git remote`` named ``upstream``, adjust the instructions accordingly.
|
||||
|
||||
.. note::
|
||||
|
||||
These instructions assume that ``https://github.com/<yourgithubaccount>/ansible.git``
|
||||
* ``https://github.com/<yourgithubaccount>/ansible.git``
|
||||
is configured as a ``git remote`` named ``origin``. If you do not use
|
||||
a ``git remote`` named ``origin``, adjust the instructions accordingly.
|
||||
|
||||
|
@ -55,7 +53,7 @@ pull request to backport the change to a previous stable branch.
|
|||
::
|
||||
|
||||
git fetch upstream
|
||||
git checkout -b backport/2.5/[PR_NUMBER_FROM_DEVEL] upstream/stable-2.5
|
||||
git checkout -b backport/2.7/[PR_NUMBER_FROM_DEVEL] upstream/stable-2.7
|
||||
|
||||
#. Cherry pick the relevant commit SHA from the devel branch into your feature
|
||||
branch, handling merge conflicts as necessary:
|
||||
|
@ -70,14 +68,18 @@ pull request to backport the change to a previous stable branch.
|
|||
|
||||
::
|
||||
|
||||
git push origin backport/2.5/[PR_NUMBER_FROM_DEVEL]
|
||||
git push origin backport/2.7/[PR_NUMBER_FROM_DEVEL]
|
||||
|
||||
#. Submit the pull request for ``backport/2.5/[PR_NUMBER_FROM_DEVEL]``
|
||||
against the ``stable-2.5`` branch
|
||||
#. Submit the pull request for ``backport/2.7/[PR_NUMBER_FROM_DEVEL]``
|
||||
against the ``stable-2.7`` branch
|
||||
|
||||
#. The Release Manager will decide whether to merge the backport PR before
|
||||
the next minor release. There isn't any need to follow up. Just ensure that the automated
|
||||
tests (CI) are green.
|
||||
|
||||
.. note::
|
||||
|
||||
The choice to use ``backport/2.5/[PR_NUMBER_FROM_DEVEL]`` as the
|
||||
The choice to use ``backport/2.7/[PR_NUMBER_FROM_DEVEL]`` as the
|
||||
name for the feature branch is somewhat arbitrary, but conveys meaning
|
||||
about the purpose of that branch. It is not required to use this format,
|
||||
but it can be helpful, especially when making multiple backport PRs for
|
||||
|
|
Loading…
Reference in a new issue