From 5763138c8b8cd967dc894dde2066069a48f4bae4 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sun, 18 Feb 2024 17:28:02 +0400 Subject: [PATCH] dev: enable auto-labels for PRs (labeler) --- .github/labeler.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 87daf227b38..d9b4af61413 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,17 +1,23 @@ dev: - - any: [ '*', 'Utils/**', '/.github/**' ] + - changed-files: + - any-glob-to-any-file: [ '*', 'Utils/**', '/.github/**' ] engine: - - any: [ 'Mage/**' ] + - changed-files: + - any-glob-to-any-file: [ 'Mage/**' ] client: - - any: [ 'Mage.Client/**', 'Mage.Common/**', 'Mage.Plugins/**' ] + - changed-files: + - any-glob-to-any-file: [ 'Mage.Client/**', 'Mage.Common/**', 'Mage.Plugins/**' ] server: - - any: [ 'Mage.Server*/**' ] + - changed-files: + - any-glob-to-any-file: [ 'Mage.Server*/**' ] tests: - - any: [ 'Mage.Verify/**', 'Mage.Tests/**', 'Mage.Reports/**' ] + - changed-files: + - any-glob-to-any-file: [ 'Mage.Verify/**', 'Mage.Tests/**', 'Mage.Reports/**' ] cards: - - any: [ 'Mage.Sets/**' ] \ No newline at end of file + - changed-files: + - any-glob-to-any-file: [ 'Mage.Sets/**' ] \ No newline at end of file