This is an automated email from the ASF dual-hosted git repository.

eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 05845833307 Clarify prompt for doc-only provider changes during 
release prep (#71834)
05845833307 is described below

commit 058458333078f093cca24c24ba8e59d2877da1a6
Author: Elad Kalif <[email protected]>
AuthorDate: Wed Aug 19 16:32:47 2026 +0300

    Clarify prompt for doc-only provider changes during release prep (#71834)
---
 .../src/airflow_breeze/prepare_providers/provider_documentation.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git 
a/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py 
b/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
index 0a3053f1184..0196a990c0c 100644
--- a/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
+++ b/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
@@ -872,7 +872,12 @@ def update_release_notes(
             )
             raise PrepareReleaseDocsNoChangesException()
         else:
-            answer = user_confirm(f"Does the provider: {provider_id} have any 
changes apart from 'doc-only'?")
+            answer = user_confirm(
+                f"Does the provider: {provider_id} have any changes apart from 
'doc-only'? "
+                f"(Answering 'no' marks this as a doc-only change, updating 
the "
+                f"'.latest-doc-only-change.txt' marker file for you to commit 
- no new PyPI "
+                f"package version will be prepared for release)"
+            )
             if answer == Answer.NO:
                 _mark_latest_changes_as_documentation_only(provider_id, 
list_of_list_of_changes)
                 return with_breaking_changes, maybe_with_new_features, False

Reply via email to