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

potiuk pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-1-test by this push:
     new e04d236c87b [v3-1-test] Add additional clarifying docs for TaskGroup 
params (#58511) (#58880)
e04d236c87b is described below

commit e04d236c87be5831975fd69dec850324a6fc0fcb
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Dec 1 02:20:18 2025 +0100

    [v3-1-test] Add additional clarifying docs for TaskGroup params (#58511) 
(#58880)
    
    * add additional clarification taskgroup params
    
    * changed for sphinx
    (cherry picked from commit d4fec16e398b7a8511a115a53c7316bf98701e79)
    
    Co-authored-by: Steve Ahn <[email protected]>
---
 airflow-core/docs/core-concepts/dags.rst       | 3 +++
 airflow-core/docs/public-airflow-interface.rst | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/airflow-core/docs/core-concepts/dags.rst 
b/airflow-core/docs/core-concepts/dags.rst
index 101977b3aa2..b1bb0c8bec2 100644
--- a/airflow-core/docs/core-concepts/dags.rst
+++ b/airflow-core/docs/core-concepts/dags.rst
@@ -551,6 +551,9 @@ A TaskGroup can be used to organize tasks into hierarchical 
groups in Graph view
 
 Tasks in TaskGroups live on the same original Dag, and honor all the Dag 
settings and pool configurations.
 
+.. seealso::
+   API reference for :class:`~airflow.sdk.TaskGroup` and 
:class:`~airflow.sdk.task_group`
+
 .. image:: /img/ui-light/task_group.gif
 
 Dependency relationships can be applied across all tasks in a TaskGroup with 
the ``>>`` and ``<<`` operators. For example, the following code puts ``task1`` 
and ``task2`` in TaskGroup ``group1`` and then puts both tasks upstream of 
``task3``:
diff --git a/airflow-core/docs/public-airflow-interface.rst 
b/airflow-core/docs/public-airflow-interface.rst
index a4221e4c3fe..1d986afccb7 100644
--- a/airflow-core/docs/public-airflow-interface.rst
+++ b/airflow-core/docs/public-airflow-interface.rst
@@ -126,6 +126,9 @@ API Server, etc.), providing a version-agnostic, stable 
interface for writing an
 * ``get_current_context``
 * ``get_parsing_context``
 
+.. seealso::
+   API reference for :class:`~airflow.sdk.TaskGroup`, 
:class:`~airflow.sdk.DAG`, and :class:`~airflow.sdk.task_group`
+
 **Migration from Airflow 2.x:**
 
 For detailed migration instructions from Airflow 2.x to 3.x, including import 
changes and other breaking changes,

Reply via email to