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

kaxilnaik 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 1568788066 Fix broken links in `dev` folder (#43288)
1568788066 is described below

commit 156878806618145430629a4069911d425d6bf77a
Author: Kaxil Naik <[email protected]>
AuthorDate: Wed Oct 23 02:05:24 2024 +0100

    Fix broken links in `dev` folder (#43288)
---
 dev/README_RELEASE_HELM_CHART.md           | 2 +-
 dev/breeze/doc/ci/02_images.md             | 6 +++---
 dev/breeze/doc/ci/03_github_variables.md   | 2 +-
 dev/breeze/doc/ci/04_selective_checks.md   | 2 +-
 dev/breeze/doc/ci/08_running_ci_locally.md | 2 +-
 dev/system_tests/README.md                 | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev/README_RELEASE_HELM_CHART.md b/dev/README_RELEASE_HELM_CHART.md
index 892c8f2eac..17680697ef 100644
--- a/dev/README_RELEASE_HELM_CHART.md
+++ b/dev/README_RELEASE_HELM_CHART.md
@@ -159,7 +159,7 @@ exit
 The minimum version of Kubernetes should be updated according to
 https://github.com/apache/airflow/blob/main/README.md#requirements in two 
places:
 
-* [../helm-chart/README.md](../helm-chart/README.md)
+* [../../helm-chart/README.md](../chart/README.md)
 * [../docs/helm-chart/index.rst](../docs/helm-chart/index.rst)
 
 
diff --git a/dev/breeze/doc/ci/02_images.md b/dev/breeze/doc/ci/02_images.md
index 757948f6ac..a41f5ce4ef 100644
--- a/dev/breeze/doc/ci/02_images.md
+++ b/dev/breeze/doc/ci/02_images.md
@@ -43,9 +43,9 @@ Airflow has two main images (build from Dockerfiles):
   production-ready Airflow installation. You can read more about
   building and using the production image in the
   [Docker stack](https://airflow.apache.org/docs/docker-stack/index.html)
-  documentation. The image is built using [Dockerfile](Dockerfile).
+  documentation. The image is built using [Dockerfile](../../../../Dockerfile).
 - CI image (Dockerfile.ci) - used for running tests and local
-  development. The image is built using [Dockerfile.ci](Dockerfile.ci).
+  development. The image is built using 
[Dockerfile.ci](../../../../Dockerfile.ci).
 
 ## PROD image
 
@@ -108,7 +108,7 @@ it uses the latest installed version of airflow and 
providers. However,
 you can choose different installation methods as described in [Building
 PROD docker images from released PIP 
packages](#building-prod-docker-images-from-released-pip-packages). Detailed
 reference for building production image from different sources can be
-found in: [Build Args 
reference](docs/docker-stack/build-arg-ref.rst#installing-airflow-using-different-methods)
+found in: [Build Args 
reference](../../../../docs/docker-stack/build-arg-ref.rst#installing-airflow-using-different-methods)
 
 You can build the CI image using current sources this command:
 
diff --git a/dev/breeze/doc/ci/03_github_variables.md 
b/dev/breeze/doc/ci/03_github_variables.md
index 1098336978..bf1353df08 100644
--- a/dev/breeze/doc/ci/03_github_variables.md
+++ b/dev/breeze/doc/ci/03_github_variables.md
@@ -71,4 +71,4 @@ docker tag ghcr.io/apache/airflow/main/ci/python3.10 
your-image-name:tag
 
 -----
 
-Read next about [Static checks](04_static_checks.md)
+Read next about [Selective checks](04_selective_checks.md)
diff --git a/dev/breeze/doc/ci/04_selective_checks.md 
b/dev/breeze/doc/ci/04_selective_checks.md
index 5434b1aad4..27e54e11c7 100644
--- a/dev/breeze/doc/ci/04_selective_checks.md
+++ b/dev/breeze/doc/ci/04_selective_checks.md
@@ -203,7 +203,7 @@ Github Actions to pass the list of parameters to a command 
to execute
 | kubernetes-combos-list-as-string       | All combinations of Python version 
and Kubernetes version to use for tests as space-separated string | 3.9-v1.25.2 
3.9-v1.26.4                   | *              |
 | kubernetes-versions                    | All Kubernetes versions to use for 
tests as JSON array                                               | ['v1.25.2'] 
                              |                |
 | kubernetes-versions-list-as-string     | All Kubernetes versions to use for 
tests as space-separated string                                   | v1.25.2     
                              | *              |
-| mypy-checks                           | List of folders to be considered for 
mypy                                                            | []            
                            |                |
+| mypy-checks                            | List of folders to be considered 
for mypy                                                            | []        
                                |                |
 | mysql-exclude                          | Which versions of MySQL to exclude 
for tests as JSON array                                           | []          
                              |                |
 | mysql-versions                         | Which versions of MySQL to use for 
tests as JSON array                                               | ['5.7']     
                              |                |
 | needs-api-codegen                      | Whether "api-codegen" are needed to 
run ("true"/"false")                                             | true         
                             |                |
diff --git a/dev/breeze/doc/ci/08_running_ci_locally.md 
b/dev/breeze/doc/ci/08_running_ci_locally.md
index cc9c89954d..0839bde9fa 100644
--- a/dev/breeze/doc/ci/08_running_ci_locally.md
+++ b/dev/breeze/doc/ci/08_running_ci_locally.md
@@ -63,7 +63,7 @@ In the output of the CI jobs, you will find both - the flags 
passed and
 environment variables set.
 
 You can read more about it in [Breeze](../README.rst) and
-[Testing](contributing-docs/09_testing.rst)
+[Testing](../../../../contributing-docs/09_testing.rst)
 
 Since we store images from every CI run, you should be able easily
 reproduce any of the CI tests problems locally. You can do it by pulling
diff --git a/dev/system_tests/README.md b/dev/system_tests/README.md
index afca22e423..80cbc1471c 100644
--- a/dev/system_tests/README.md
+++ b/dev/system_tests/README.md
@@ -21,7 +21,7 @@ Small tool to update status of all AIP-47 issues.
 
 Simply:
 
-1) Activate dev environment based on [requirements](dev/requirements.txt)
+1) Activate dev environment based on [requirements](../../dev/requirements.txt)
 
 2) Set GITHUB_TOKEN to repo-writeable token
 

Reply via email to