From 5a19cb410e10189993ce30e59dc766976a5c7f5e Mon Sep 17 00:00:00 2001 From: ColorfulRhino <131405023+ColorfulRhino@users.noreply.github.com> Date: Wed, 19 Jun 2024 16:39:41 +0200 Subject: [PATCH] actions: Have auto-labeler check subdirectories This fixes a lot of labels not getting applied properly. --- .github/labeler.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index aab2b7266d7f..5e42b0e67642 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -14,27 +14,27 @@ - all: - changed-files: - any-glob-to-any-file: ['patch/**/*','config/**/*'] - - any-glob-to-all-files: ['!config/cli/*','!config/desktop/*','!config/distributions/*'] + - any-glob-to-all-files: ['!config/cli/**/*','!config/desktop/**/*','!config/distributions/**/*'] "Framework": - all: - changed-files: - - any-glob-to-any-file: ['lib/*','tools/*','config/cli/*','packages/*','extensions/*'] + - any-glob-to-any-file: ['lib/**/*','tools/**/*','config/cli/**/*','packages/**/*','extensions/**/*'] "Actions scripts": - all: - changed-files: - - any-glob-to-any-file: ['.github/workflows/*'] + - any-glob-to-any-file: ['.github/workflows/**/*'] "Desktop": - all: - changed-files: - - any-glob-to-any-file: ['config/desktop/*'] + - any-glob-to-any-file: ['config/desktop/**/*'] "Patches": - all: - changed-files: - - any-glob-to-any-file: ['patch/*'] + - any-glob-to-any-file: ['patch/**/*'] # Add 'Documentation' label to any change to .md files within the entire repository "Documentation":