The GitHub Actions job "Tests" on airflow.git has succeeded. Run started by GitHub user ashb (triggered by ashb).
Head commit for run: 1237dca933704d4c06e10315dc3c7659a7445c15 / Ash Berlin-Taylor <[email protected]> Revert "EdgeModifier refactoring (#21404)" This reverts commit ace8c6e942ff5554639801468b971915b7c0e9b9. Fixes apache/airflow#23285 This dag breaks with a cycle as group.end has itself as a downstream otherwise: ```python from pendulum import datetime from airflow.decorators import dag, task, task_group from airflow.utils.edgemodifier import Label @task def begin(): ... @task def end(): ... @dag(start_date=datetime(2022, 1, 1), schedule_interval=None) def task_groups_with_edge_labels(): @task_group def group(): begin() >> end() group() _ = task_groups_with_edge_labels() ``` Report URL: https://github.com/apache/airflow/actions/runs/2234701732 With regards, GitHub Actions via GitBox --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
