From 9ed6c4c7fad2832669b42049ca04bc7a01c70cef Mon Sep 17 00:00:00 2001 From: Ephraim Anierobi Date: Thu, 26 May 2022 08:11:16 +0100 Subject: [PATCH] Clarify manual merging of PR in release doc It was not clear to me what this really means --- dev/README_RELEASE_AIRFLOW.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev/README_RELEASE_AIRFLOW.md b/dev/README_RELEASE_AIRFLOW.md index ebe94e6abbe23c..6c050ebd4ab70f 100644 --- a/dev/README_RELEASE_AIRFLOW.md +++ b/dev/README_RELEASE_AIRFLOW.md @@ -224,7 +224,12 @@ The Release Candidate artifacts we vote upon should be the exact ones we vote ag - Update the `REVISION_HEADS_MAP` at airflow/utils/db.py to include the revision head of the release even if there are no migrations. - Commit the version change. -- PR from the 'test' branch to the 'stable' branch, and manually merge it once approved. +- PR from the 'test' branch to the 'stable' branch, and manually merge it once approved. Here's how to manually merge the PR: + + ```shell script + git merge --ff-only v${VERSION_BRANCH}-test + ``` + - Check out the 'stable' branch ```shell script