This is an automated email from the ASF dual-hosted git repository.
jedcunningham 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 ab0e48e275d Fix to Broken link in Tasks SDK Documentation (#72443)
ab0e48e275d is described below
commit ab0e48e275d1f81e023168d10a9a7b7a9b9792a3
Author: LuisFelipeUrena <[email protected]>
AuthorDate: Wed Sep 2 14:15:41 2026 -0400
Fix to Broken link in Tasks SDK Documentation (#72443)
---
task-sdk/docs/examples.rst | 2 +-
task-sdk/docs/index.rst | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/task-sdk/docs/examples.rst b/task-sdk/docs/examples.rst
index 4cef5b28c7a..727c15b3e5f 100644
--- a/task-sdk/docs/examples.rst
+++ b/task-sdk/docs/examples.rst
@@ -18,7 +18,7 @@
Examples
========
-.. note:: For a minimal quick start, see the `Getting Started
<../index.rst#getting-started>`_ section.
+.. note:: For a minimal quick start, see the :ref:`Getting Started
<getting-started>` section.
Key Concepts
------------
diff --git a/task-sdk/docs/index.rst b/task-sdk/docs/index.rst
index 18e215d4ce7..1bb23c0a962 100644
--- a/task-sdk/docs/index.rst
+++ b/task-sdk/docs/index.rst
@@ -40,6 +40,8 @@ To install the Task SDK, run:
pip install apache-airflow-task-sdk
+.. _getting-started:
+
Getting Started
^^^^^^^^^^^^^^^
Define a basic Dag and task in just a few lines of Python: