GitHub user rmaziere added a comment to the discussion: manual trigger dag
On Airflow v3+, you can test with this DAG.
```py
import os
from datetime import timedelta
import pendulum
from airflow import DAG
from airflow.providers.standard.operators.bash import BashOperator
default_args = {
"owner": "airflow",
"depends_on_past": False,
"retries": None,
}
with DAG(
dag_id="test",
default_args=default_args,
description="Test DAG",
schedule=None,
dagrun_timeout=timedelta(minutes=900),
start_date=pendulum.datetime(2026, 1, 1, tz="Europe/Paris"),
catchup=False,
tags=["test", "demo"],
) as dag:
list_files = BashOperator(
task_id="list_files",
bash_command="ls -l /tmp/",
)
list_hidden_files = BashOperator(
task_id="list_hidden_files",
bash_command="ls -la /tmp/",
)
list_files >> list_hidden_files
```
GitHub link:
https://github.com/apache/airflow/discussions/60255#discussioncomment-15505179
----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]