GitHub user raphaelauv edited a comment on the discussion: Manually Triggering
a Paused DAG
no
a hack would be to have a "copy paste" of the dag , maybe without scheduling
for this manual triggering
```python
for i in ["","manual"]:
schedule = "* * * * *" if i == "" else None
dag_id = "super_dag" if i == "" else "super_dag_"+i
With Dag(schedule=schedule,dag_id=dag_id,...)
```
GitHub link:
https://github.com/apache/airflow/discussions/71353#discussioncomment-17972218
----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]