ci: labeler already capable of sub-string searches (#62022)

Co-authored-by: casswedson <casswedson@users.noreply.github.com>
This commit is contained in:
casswedson 2022-10-31 17:50:17 -05:00 committed by GitHub
parent be159c383d
commit 1585de65ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 59 additions and 68 deletions

127
.github/labeler.yml vendored
View File

@ -9,19 +9,18 @@
- "**/*.md"
"Game: Achievements / Conducts / Scores":
- "**/scores**"
- "**/statistics**"
- "**/achievements**"
- "**/conducts**"
- "**/event_statistics.*"
- "**/**scores**"
- "**/**statistics**"
- "**/**achievements**"
- "**/**conducts**"
"[Python]":
- "**/*.py"
"<Documentation>":
- "**/*.md"
- doc/**/*
- doxygen_doc/**/*
- "doc/**"
- "doxygen_doc/**"
"Code: Tooling":
- ".github/**"
@ -29,16 +28,16 @@
- any: ['tools/**', '!tools/spell_checker/dictionary.txt']
"Code: Tests":
- tests/**/*
- data/mods/TEST_DATA/**/*
- "tests/**"
- "data/mods/TEST_DATA/**"
"Character / World Generation":
- src/newcharacter.cpp
- "**/worldfactory.*"
- "**/**newcharacter**"
- "**/**worldfactory**"
"Code: Build":
- build-data/**/*
- build-scripts/**/*
- "build-data/**"
- "build-scripts/**"
- "**/Makefile"
- "**/CMakeLists.txt"
- "**/*.cmake"
@ -50,49 +49,45 @@
- .lgtm.yml
"Crafting / Construction / Recipes":
- "**/recipes/**/*"
- data/json/construction.json
- data/json/construction_category.json
- data/json/construction_group.json
- data/json/deconstruction.json
- "**/**recipes**"
- "**/**construction**"
"EOC: Effects On Condition":
- "**/**effect_on_condition**"
- "**/**eocs**"
"Fields / Furniture / Terrain / Traps":
- "**/furniture**"
- "**/**furniture**"
"Items: Food / Vitamins":
- "**/food**"
- "**/comestibles**"
- "**/**food**"
- "**/**comestible**"
"NPC / Factions":
- "**/**npc**/**/*"
- "**/**npc**"
- "**/**NPC**"
"Melee":
- "**/melee**"
- "**/**melee**"
- "**/**techniques**"
"Missions":
- "**/**mission**"
"Info / User Interface":
- "**/ui/**/*"
- "src/**ui**"
- "**/widget/**/*"
- "src/list_view.*"
- "src/surroundings_menu.*"
- "**/**ui**"
- "**/**widget**"
- "**/**view**"
"Items: Archery":
- "**/**archery**"
- "**/**crossbows**"
"Items: Armor / Clothing":
- "**/armor/**/*"
- "**/**armor**"
"Items: Battery / UPS":
- "**/battery**"
- "**/**battery**"
"Items: Containers":
- "**/**containers**"
@ -101,75 +96,71 @@
- "**/**holster**"
- "**/**ammo_pouch**"
- "**/**bandolier**"
- "src/item_pocket.*"
- "src/item_contents.*"
- "tests/item_pocket_test.*"
- "**/**pocket**"
- "**/**contents**"
"Items: Magazines":
- "**/magazine/**/*"
- "**/**magazine**"
"Appliance/Power Grid":
- "**/appliance**"
- "**/**appliance**"
"Monsters":
- "**/monsters/**/*"
- "**/**monsters**"
"Mutations / Traits / Professions/ Hobbies":
- "**/professions.json"
- "**mutations**"
- "**hobbies**"
- "**/**profession**"
- "**/**mutations**"
- "**/**hobbies**"
"Lore":
- data/json/npcs/BG_trait_groups.json
- data/json/npcs/Personality_trait_groups.json
- data/json/npcs/personality_traits.json
- "**/Backgrounds/**/*"
- "**/snippets/**/*"
- "**/**Backgrounds**"
- "**/**snippets**"
"Limbs":
- "src/bodypart.*"
- "**/**bodypart**"
- "data/json/limb_scores.json"
"Spawn":
- "**/itemgroups/**/*"
- "**/monstergroups/**/*"
- "**/**itemgroups**"
- "**/**monstergroups**"
"Bionics":
- "**/bionics.*"
- "**/**bionics**"
"Map / Mapgen":
- "**/mapgen/**/*"
- "**/mapgen_palettes/**/*"
- "**/overmap/**/*"
- "**/overmap**"
- "**/**mapgen**"
- "**/**overmap**"
"Martial Arts":
- "**/martialarts**"
- "**/**martialarts**"
"Player Faction Base / Camp":
- "src/basecamp.*"
- "src/faction_camp.*"
- data/json/mapgen/basecamps/**/*
- "**/**basecamp**"
- "**/faction_camp**"
"Items: Ammo / Guns":
- "**/gun/**/*"
- "**/ammo/**/*"
- "**/**gun**"
- "**/**ammo**"
"Items: Gunmod / Toolmod":
- "**/gunmod**"
- "**/toolmod**"
- "**/**gunmod**"
- "**/**toolmod**"
"SDL: Tiles / Sound":
- gfx/**/*
- sound/**/*
- "gfx/**"
- "sound/**"
"Scenarios":
- "**/scenario**"
- "**/**scenario**"
- "**/**start_location**"
"Translation":
- lang/**/*
- "src/translation.*"
- "lang/**"
- "**/**translation**"
"Mods: Aftershock":
- data/mods/Aftershock/**/*
@ -215,15 +206,15 @@
- data/mods/Xedra_Evolved/**/*
"Mods":
- any: [ 'data/mods/**/*' ]
all: [ '!data/mods/TEST_DATA/**/*' ]
- any: [ 'data/mods/**' ]
all: [ '!data/mods/TEST_DATA/**' ]
"Mechanics: Enchantments / Spells":
- "**/enchantments**"
- "**/spells**"
- "**/**enchantments**"
- "**/**spells**"
"Mechanics: Weather":
- "**/weather**"
- "**/**weather**"
"Vehicles":
- "**/vehicle**"
- "**/**vehicle**"