From ce579690165aafc643d5b9719bf12d08365227ee Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Thu, 28 Dec 2023 21:26:05 +0100 Subject: [PATCH] DEV: Add "migrations-tooling" label to PRs for import scripts (#25062) Also, PRs for import scripts should automatically be assigned to the migrations-tooling group. --- .github/labeler.yml | 7 +++++-- CODEOWNERS | 2 ++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 3377ba54ffc..4a7c27c9d55 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -2,6 +2,9 @@ chat: - changed_files: - any-glob-to-any-file: plugins/chat/**/* -migration: +migrations-tooling: - changed_files: - - any-glob-to-any-file: migrations/**/* + - any-glob-to-any-file: + - migrations/**/* + - script/bulk_import/**/* + - script/import_scripts/**/* diff --git a/CODEOWNERS b/CODEOWNERS index 152432a8404..a2e9f9dc92a 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1 +1,3 @@ /migrations/ @discourse/migrations-tooling +/script/bulk_import/ @discourse/migrations-tooling +/script/import_scripts/ @discourse/migrations-tooling