@@ -298,11 +298,11 @@ labelPRBasedOnFilePath:
298298 - providers/zendesk/**
299299
300300 area:API :
301- - airflow/api/**/*
302- - airflow/api_fastapi/**/*
301+ - airflow-core/src/airflow /api/**/*
302+ - airflow-core/src/airflow /api_fastapi/**/*
303303 - clients/**/*
304- - docs/apache- airflow/stable-rest-api-ref.rst
305- - tests/api_fastapi/**/*
304+ - airflow-core/docs /stable-rest-api-ref.rst
305+ - airflow-core/ tests/unit /api_fastapi/**/*
306306
307307 area:dev-tools :
308308 - scripts/**/*
@@ -328,95 +328,95 @@ labelPRBasedOnFilePath:
328328 - docs/helm-chart/**
329329
330330 area:UI :
331- - docs/apache- airflow/ui.rst
332- - airflow/ui/**/*
331+ - airflow-core/docs /ui.rst
332+ - airflow-core/src/airflow /ui/**/*
333333
334334 area:CLI :
335- - airflow/cli/**/*.py
336- - tests/cli/**/*.py
337- - docs/apache- airflow/cli-and-env-variables-ref.rst
338- - docs/apache- airflow/howto/usage-cli.rst
335+ - airflow-core/src/airflow /cli/**/*.py
336+ - airflow-core/ tests/unit /cli/**/*.py
337+ - airflow-core/docs /cli-and-env-variables-ref.rst
338+ - airflow-core/docs /howto/usage-cli.rst
339339
340340 area:Lineage :
341- - airflow/lineage/**/*
342- - tests/lineage/**/*
343- - docs/apache- airflow/administration-and-deployment/lineage.rst
341+ - airflow-core/src/airflow /lineage/**/*
342+ - airflow-core/ tests/unit /lineage/**/*
343+ - airflow-core/docs /administration-and-deployment/lineage.rst
344344
345345 area:Logging :
346- - airflow/utils/log/**/*
347- - docs/apache- airflow/administration-and-deployment/logging-monitoring/logging-*.rst
348- - tests/utils/log/**/*
346+ - airflow-core/src/airflow /utils/log/**/*
347+ - airflow-core/docs /administration-and-deployment/logging-monitoring/logging-*.rst
348+ - airflow-core/ tests/unit /utils/log/**/*
349349 - providers/**/log/*
350350
351351 area:Plugins :
352- - airflow/cli/commands/local_commands/plugins_command.py
353- - airflow/plugins_manager.py
354- - tests/cli/commands/local_commands/test_plugins_command.py
355- - tests/plugins/**/*
356- - docs/apache- airflow/administration-and-deployment/plugins.rst
352+ - airflow-core/src/airflow /cli/commands/local_commands/plugins_command.py
353+ - airflow-core/src/airflow /plugins_manager.py
354+ - airflow-core/ tests/unit /cli/commands/local_commands/test_plugins_command.py
355+ - airflow-core/ tests/unit /plugins/**/*
356+ - airflow-core/docs /administration-and-deployment/plugins.rst
357357
358358 area:Scheduler :
359- - airflow/jobs/scheduler_job_runner.py
360- - docs/apache- airflow/administration-and-deployment/scheduler.rst
361- - tests/jobs/test_scheduler_job.py
359+ - airflow-core/src/airflow /jobs/scheduler_job_runner.py
360+ - airflow-core/docs /administration-and-deployment/scheduler.rst
361+ - airflow-core/ tests/unit /jobs/test_scheduler_job.py
362362
363363 area:DAG-processing :
364- - airflow/dag_processing/**/*
365- - airflow/jobs/dag_processor_job_runner.py
366- - docs/apache- airflow/administration-and-deployment/dagfile-processing.rst
367- - tests/dag_processing/**/*
364+ - airflow-core/src/airflow /dag_processing/**/*
365+ - airflow-core/src/airflow /jobs/dag_processor_job_runner.py
366+ - airflow-core/docs /administration-and-deployment/dagfile-processing.rst
367+ - airflow-core/ tests/unit /dag_processing/**/*
368368
369369 area:Executors-core :
370- - airflow/executors/**/*
371- - docs/apache- airflow/core-concepts/executor/**/*
372- - tests/executors/**/*
370+ - airflow-core/src/airflow /executors/**/*
371+ - airflow-core/docs /core-concepts/executor/**/*
372+ - airflow-core/ tests/unit /executors/**/*
373373
374374 area:Secrets :
375- - airflow/secrets/**/*
376- - tests/secrets/**/*
375+ - airflow-core/src/airflow /secrets/**/*
376+ - airflow-core/ tests/unit /secrets/**/*
377377 - providers/**/secrets/*
378- - docs/apache- airflow/security/secrets/**/*
378+ - airflow-core/docs /security/secrets/**/*
379379
380380 area:Triggerer :
381- - airflow/cli/commands/local_commands/triggerer_command.py
382- - airflow/jobs/triggerer_job_runner.py
383- - airflow/models/trigger.py
381+ - airflow-core/src/airflow /cli/commands/local_commands/triggerer_command.py
382+ - airflow-core/src/airflow /jobs/triggerer_job_runner.py
383+ - airflow-core/src/airflow /models/trigger.py
384384 - providers/standard/src/airflow/providers/standard/triggers/**/*
385- - tests/cli/commands/local_commands/test_triggerer_command.py
386- - tests/jobs/test_triggerer_job.py
387- - tests/models/test_trigger.py
385+ - airflow-core/ tests/unit /cli/commands/local_commands/test_triggerer_command.py
386+ - airflow-core/ tests/unit /jobs/test_triggerer_job.py
387+ - airflow-core/ tests/unit /models/test_trigger.py
388388 - providers/standard/tests/unit/standard/triggers/**/*
389389
390390 area:Serialization :
391- - airflow/serialization/**/*
392- - airflow/models/serialized_dag.py
393- - tests/serialization/**/*
394- - tests/models/test_serialized_dag.py
395- - docs/apache- airflow/administration-and-deployment/dag-serialization.rst
391+ - airflow-core/src/airflow /serialization/**/*
392+ - airflow-core/src/airflow /models/serialized_dag.py
393+ - airflow-core/ tests/unit /serialization/**/*
394+ - airflow-core/ tests/unit /models/test_serialized_dag.py
395+ - airflow-core/docs /administration-and-deployment/dag-serialization.rst
396396
397397 area:core-operators :
398- - airflow/operators/**/*
399- - airflow/hooks/**/*
400- - airflow/sensors/**/*
401- - tests/operators/**/*
402- - tests/hooks/**/*
403- - tests/sensors/**/*
404- - docs/apache- airflow/operators-and-hooks-ref.rst
405- - docs/apache- airflow/howto/operator/*
398+ - airflow-core/src/airflow /operators/**/*
399+ - airflow-core/src/airflow /hooks/**/*
400+ - airflow-core/src/airflow /sensors/**/*
401+ - airflow-core/ tests/unit /operators/**/*
402+ - airflow-core/ tests/unit /hooks/**/*
403+ - airflow-core/ tests/unit /sensors/**/*
404+ - airflow-core/docs /operators-and-hooks-ref.rst
405+ - airflow-core/docs /howto/operator/*
406406
407407 area:production-image :
408408 - Dockerfile
409409 - docs/docker-stack/**/*
410410 - docker_tests/**/*
411411
412412 area:system-tests :
413- - tests/system/**/*
413+ - airflow-core/ tests/system/**/*
414414
415415 area:task-sdk :
416416 - task-sdk/**/*
417417
418418 area:db-migrations :
419- - airflow/migrations/versions/*
419+ - airflow-core/src/airflow /migrations/versions/*
420420
421421 area:providers :
422422 - providers/**/*
@@ -443,7 +443,7 @@ firstPRWelcomeComment: >
443443
444444 - In case of a new feature add useful documentation (in docstrings or in `docs/` directory).
445445 Adding a new operator? Check this short
446- [guide](https://github.com/apache/airflow/blob/main/docs/apache- airflow/howto/custom-operator.rst)
446+ [guide](https://github.com/apache/airflow/blob/main/airflow-core/docs /howto/custom-operator.rst)
447447 Consider adding an example DAG that shows how users should use it.
448448
449449 - Consider using [Breeze environment](https://github.com/apache/airflow/blob/main/dev/breeze/doc/README.rst)
0 commit comments