@@ -301,11 +301,11 @@ labelPRBasedOnFilePath:
301301 - providers/zendesk/**
302302
303303 area:API :
304- - airflow/api/**/*
305- - airflow/api_fastapi/**/*
304+ - airflow-core/src/airflow /api/**/*
305+ - airflow-core/src/airflow /api_fastapi/**/*
306306 - clients/**/*
307- - docs/apache- airflow/stable-rest-api-ref.rst
308- - tests/api_fastapi/**/*
307+ - airflow-core/docs /stable-rest-api-ref.rst
308+ - airflow-core/ tests/unit /api_fastapi/**/*
309309
310310 area:dev-tools :
311311 - scripts/**/*
@@ -331,95 +331,95 @@ labelPRBasedOnFilePath:
331331 - docs/helm-chart/**
332332
333333 area:UI :
334- - docs/apache- airflow/ui.rst
335- - airflow/ui/**/*
334+ - airflow-core/docs /ui.rst
335+ - airflow-core/src/airflow /ui/**/*
336336
337337 area:CLI :
338- - airflow/cli/**/*.py
339- - tests/cli/**/*.py
340- - docs/apache- airflow/cli-and-env-variables-ref.rst
341- - docs/apache- airflow/howto/usage-cli.rst
338+ - airflow-core/src/airflow /cli/**/*.py
339+ - airflow-core/ tests/unit /cli/**/*.py
340+ - airflow-core/docs /cli-and-env-variables-ref.rst
341+ - airflow-core/docs /howto/usage-cli.rst
342342
343343 area:Lineage :
344- - airflow/lineage/**/*
345- - tests/lineage/**/*
346- - docs/apache- airflow/administration-and-deployment/lineage.rst
344+ - airflow-core/src/airflow /lineage/**/*
345+ - airflow-core/ tests/unit /lineage/**/*
346+ - airflow-core/docs /administration-and-deployment/lineage.rst
347347
348348 area:Logging :
349- - airflow/utils/log/**/*
350- - docs/apache- airflow/administration-and-deployment/logging-monitoring/logging-*.rst
351- - tests/utils/log/**/*
349+ - airflow-core/src/airflow /utils/log/**/*
350+ - airflow-core/docs /administration-and-deployment/logging-monitoring/logging-*.rst
351+ - airflow-core/ tests/unit /utils/log/**/*
352352 - providers/**/log/*
353353
354354 area:Plugins :
355- - airflow/cli/commands/local_commands/plugins_command.py
356- - airflow/plugins_manager.py
357- - tests/cli/commands/local_commands/test_plugins_command.py
358- - tests/plugins/**/*
359- - docs/apache- airflow/administration-and-deployment/plugins.rst
355+ - airflow-core/src/airflow /cli/commands/local_commands/plugins_command.py
356+ - airflow-core/src/airflow /plugins_manager.py
357+ - airflow-core/ tests/unit /cli/commands/local_commands/test_plugins_command.py
358+ - airflow-core/ tests/unit /plugins/**/*
359+ - airflow-core/docs /administration-and-deployment/plugins.rst
360360
361361 area:Scheduler :
362- - airflow/jobs/scheduler_job_runner.py
363- - docs/apache- airflow/administration-and-deployment/scheduler.rst
364- - tests/jobs/test_scheduler_job.py
362+ - airflow-core/src/airflow /jobs/scheduler_job_runner.py
363+ - airflow-core/docs /administration-and-deployment/scheduler.rst
364+ - airflow-core/ tests/unit /jobs/test_scheduler_job.py
365365
366366 area:DAG-processing :
367- - airflow/dag_processing/**/*
368- - airflow/jobs/dag_processor_job_runner.py
369- - docs/apache- airflow/administration-and-deployment/dagfile-processing.rst
370- - tests/dag_processing/**/*
367+ - airflow-core/src/airflow /dag_processing/**/*
368+ - airflow-core/src/airflow /jobs/dag_processor_job_runner.py
369+ - airflow-core/docs /administration-and-deployment/dagfile-processing.rst
370+ - airflow-core/ tests/unit /dag_processing/**/*
371371
372372 area:Executors-core :
373- - airflow/executors/**/*
374- - docs/apache- airflow/core-concepts/executor/**/*
375- - tests/executors/**/*
373+ - airflow-core/src/airflow /executors/**/*
374+ - airflow-core/docs /core-concepts/executor/**/*
375+ - airflow-core/ tests/unit /executors/**/*
376376
377377 area:Secrets :
378- - airflow/secrets/**/*
379- - tests/secrets/**/*
378+ - airflow-core/src/airflow /secrets/**/*
379+ - airflow-core/ tests/unit /secrets/**/*
380380 - providers/**/secrets/*
381- - docs/apache- airflow/security/secrets/**/*
381+ - airflow-core/docs /security/secrets/**/*
382382
383383 area:Triggerer :
384- - airflow/cli/commands/local_commands/triggerer_command.py
385- - airflow/jobs/triggerer_job_runner.py
386- - airflow/models/trigger.py
384+ - airflow-core/src/airflow /cli/commands/local_commands/triggerer_command.py
385+ - airflow-core/src/airflow /jobs/triggerer_job_runner.py
386+ - airflow-core/src/airflow /models/trigger.py
387387 - providers/standard/src/airflow/providers/standard/triggers/**/*
388- - tests/cli/commands/local_commands/test_triggerer_command.py
389- - tests/jobs/test_triggerer_job.py
390- - tests/models/test_trigger.py
388+ - airflow-core/ tests/unit /cli/commands/local_commands/test_triggerer_command.py
389+ - airflow-core/ tests/unit /jobs/test_triggerer_job.py
390+ - airflow-core/ tests/unit /models/test_trigger.py
391391 - providers/standard/tests/unit/standard/triggers/**/*
392392
393393 area:Serialization :
394- - airflow/serialization/**/*
395- - airflow/models/serialized_dag.py
396- - tests/serialization/**/*
397- - tests/models/test_serialized_dag.py
398- - docs/apache- airflow/administration-and-deployment/dag-serialization.rst
394+ - airflow-core/src/airflow /serialization/**/*
395+ - airflow-core/src/airflow /models/serialized_dag.py
396+ - airflow-core/ tests/unit /serialization/**/*
397+ - airflow-core/ tests/unit /models/test_serialized_dag.py
398+ - airflow-core/docs /administration-and-deployment/dag-serialization.rst
399399
400400 area:core-operators :
401- - airflow/operators/**/*
402- - airflow/hooks/**/*
403- - airflow/sensors/**/*
404- - tests/operators/**/*
405- - tests/hooks/**/*
406- - tests/sensors/**/*
407- - docs/apache- airflow/operators-and-hooks-ref.rst
408- - docs/apache- airflow/howto/operator/*
401+ - airflow-core/src/airflow /operators/**/*
402+ - airflow-core/src/airflow /hooks/**/*
403+ - airflow-core/src/airflow /sensors/**/*
404+ - airflow-core/ tests/unit /operators/**/*
405+ - airflow-core/ tests/unit /hooks/**/*
406+ - airflow-core/ tests/unit /sensors/**/*
407+ - airflow-core/docs /operators-and-hooks-ref.rst
408+ - airflow-core/docs /howto/operator/*
409409
410410 area:production-image :
411411 - Dockerfile
412412 - docs/docker-stack/**/*
413413 - docker_tests/**/*
414414
415415 area:system-tests :
416- - tests/system/**/*
416+ - airflow-core/ tests/system/**/*
417417
418418 area:task-sdk :
419419 - task-sdk/**/*
420420
421421 area:db-migrations :
422- - airflow/migrations/versions/*
422+ - airflow-core/src/airflow /migrations/versions/*
423423
424424 area:providers :
425425 - providers/**/*
@@ -446,7 +446,7 @@ firstPRWelcomeComment: >
446446
447447 - In case of a new feature add useful documentation (in docstrings or in `docs/` directory).
448448 Adding a new operator? Check this short
449- [guide](https://github.com/apache/airflow/blob/main/docs/apache- airflow/howto/custom-operator.rst)
449+ [guide](https://github.com/apache/airflow/blob/main/airflow-core/docs /howto/custom-operator.rst)
450450 Consider adding an example DAG that shows how users should use it.
451451
452452 - Consider using [Breeze environment](https://github.com/apache/airflow/blob/main/dev/breeze/doc/README.rst)
0 commit comments