From e4da596ac58bc887923397c36fe5f5236ae68a58 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Sun, 4 Aug 2024 16:17:29 -0400 Subject: [PATCH] labels.yml: Add Stylesheets + Differentiate between Mod and Topic labels (#15750) Added the functionality for the labeler to recognize Stylesheet related PRs. Also annotated file to differentiate different types of labels (as opposed to sorting them all alphabetically). --- .github/labels.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/labels.yml b/.github/labels.yml index a25876cad2..c24be71f04 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -2,6 +2,8 @@ # source: # - any: ['src/**/*', '!src/docs/*'] +# 'Mod' related labels + "Mod: Core": - changed-files: - any-glob-to-any-file: ['src/App/**/*', 'src/Base/**/*', 'src/Gui/**/*'] @@ -85,3 +87,9 @@ "Mod: Test": - changed-files: - any-glob-to-any-file: ['src/Mod/Test/**/*'] + +# 'Topic' related labels + +"Topic: Stylesheets": +- changed-files: + - any-glob-to-any-file: ['src/Gui/Stylesheets/**/*']