You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/10/28 15:21:27 UTC

[airflow] branch main updated (1add2f7c41 -> 280a0e75ed)

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

potiuk pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


    from 1add2f7c41 Add env-file parameter to Docker Operator (#26951)
     add 280a0e75ed Add examples and howtos about sensors (#27333)

No new revisions were added by this update.

Summary of changes:
 airflow/example_dags/example_sensors.py            | 123 +++++++++++++++++++++
 airflow/sensors/bash.py                            |   5 +
 airflow/sensors/filesystem.py                      |   6 +
 airflow/sensors/python.py                          |   4 +
 airflow/sensors/time_delta.py                      |  11 ++
 airflow/sensors/time_sensor.py                     |   9 ++
 airflow/sensors/weekday.py                         |   5 +
 docs/apache-airflow/howto/operator/bash.rst        |  15 +++
 .../howto/operator/{weekday.rst => file.rst}       |  16 +--
 docs/apache-airflow/howto/operator/index.rst       |   2 +
 docs/apache-airflow/howto/operator/python.rst      |  15 ++-
 docs/apache-airflow/howto/operator/time.rst        |  78 +++++++++++++
 docs/apache-airflow/howto/operator/weekday.rst     |  13 +++
 docs/apache-airflow/operators-and-hooks-ref.rst    |  21 ++--
 14 files changed, 303 insertions(+), 20 deletions(-)
 create mode 100644 airflow/example_dags/example_sensors.py
 copy docs/apache-airflow/howto/operator/{weekday.rst => file.rst} (66%)
 create mode 100644 docs/apache-airflow/howto/operator/time.rst