From 4f7695fa21fd5105effdd83ac1e4a5424a71e95e Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Sun, 9 Nov 2025 18:56:15 +0100 Subject: [PATCH 1/3] labeler: be more specific when matching for "import" --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 6a426a40ce..ef16533b9d 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -108,7 +108,7 @@ hwdb: - any-glob-to-any-file: '**/*hwdb*' import: - changed-files: - - any-glob-to-any-file: '**/*import*' + - any-glob-to-any-file: ['src/import/*', 'src/shared/*import*', 'units/**/*import*'] integritysetup: - changed-files: - any-glob-to-any-file: '**/*integrity*' From dcb717a53ac2dfece6dd6243233f1beeee6d126f Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Sun, 9 Nov 2025 18:57:01 +0100 Subject: [PATCH 2/3] labeler: match per-user machined units too --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index ef16533b9d..24570fa56c 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -132,7 +132,7 @@ login: - any-glob-to-any-file: ['src/login/*', '**/sd-login*/**'] machine: - changed-files: - - any-glob-to-any-file: ['src/machine/*', 'units/*machine*'] + - any-glob-to-any-file: ['src/machine/*', 'units/**/*machine*'] meson: - changed-files: - any-glob-to-any-file: ['meson_options.txt', '**/meson.build'] From c2715eed5863c6fa90e428d303172897c4bc4165 Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Sun, 9 Nov 2025 18:57:20 +0100 Subject: [PATCH 3/3] labaler: add "shell profile" --- .github/labeler.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/labeler.yml b/.github/labeler.yml index 24570fa56c..5c39698f49 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -229,6 +229,9 @@ selinux: shell-completion: - changed-files: - any-glob-to-any-file: 'shell-completion/*' +shell profile: + - changed-files: + - any-glob-to-any-file: 'profile.d/*' shutdown: - changed-files: - any-glob-to-any-file: ['src/shutdown/*', 'units/**/*shutdown*']