potiuk commented on PR #43512: URL: https://github.com/apache/airflow/pull/43512#issuecomment-2447307813
> `docs-build = true` yet the docs build step in CI seems to be skipped. > > https://github.com/apache/airflow/actions/runs/11594095043/job/32279562944?pr=43512#step:8:731 You also need to pass "docs-build" as input of the composite `static-checks-mypy-docs.yml` workflow and pass it in ci.yml. Unfortunately GitHub Actions convers unnown variables, inputs etc into empty string :scream: and in this case you have: ``` if inputs.docs.build == 'true' ``` turn into ``` if '' == 'true' ``` I opened (it is still opened) a github support request for that around 3 years ago. But I am afraid the ship has failed - there are far too many workflows that would be broken if they introduce an error on undefined variables in their expression language :( -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
