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

potiuk 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 ab76f02dd9e Fix building docs for providers (#62538)
ab76f02dd9e is described below

commit ab76f02dd9ea38a0294bbb04a208c55324c07c20
Author: Jarek Potiuk <[email protected]>
AuthorDate: Thu Feb 26 21:53:29 2026 +0100

    Fix building docs for providers (#62538)
    
    The #62264 changed the build docs process to use current commit
    for workflows/scripts to support building docs for Airflow 2,
    however it broke building commit docs from history because fetch
    depth was set to 1 (default) - but it should be 0 to fetch all
    history.
---
 .github/workflows/publish-docs-to-s3.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/publish-docs-to-s3.yml 
b/.github/workflows/publish-docs-to-s3.yml
index 0547cab48d3..c394f856783 100644
--- a/.github/workflows/publish-docs-to-s3.yml
+++ b/.github/workflows/publish-docs-to-s3.yml
@@ -200,6 +200,7 @@ jobs:
           persist-credentials: false
           ref: ${{ inputs.ref }}
           fetch-tags: true
+          fetch-depth: 0
       - name: "Apply patch commits if provided"
         run: |
           if [[ "${APPLY_COMMITS}" != "" ]]; then

Reply via email to