From 8bf01db8498f9c7a1a13eb909025a6093f83c5ca Mon Sep 17 00:00:00 2001 From: sogladev Date: Sun, 24 May 2026 09:18:34 +0200 Subject: [PATCH] feat(VSCode): Add commit message generation instructions for Copilot (#25908) --- .git_commit_template.txt | 10 ++++++---- .vscode/settings.json | 5 +++++ 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.git_commit_template.txt b/.git_commit_template.txt index c87427b9c0..27e94fc81f 100644 --- a/.git_commit_template.txt +++ b/.git_commit_template.txt @@ -1,9 +1,11 @@ ### TITLE ## Type(Scope/Subscope): Commit ultra short explanation -## |---- Write below the examples with a maximum of 50 characters ----| +## |---- Write below the examples with a maximum of 72 characters ----| ## Example 1: fix(DB/SAI): Missing spell to NPC Hogger -## Example 2: fix(CORE/Raid): Phase 2 of Ragnaros -## Example 3: feat(CORE/Commands): New GM command to do something +## Example 2: feat(Scripts/Commands): Add .mail list and .mail return commands +## Example 3: refactor(Scripts/Ulduar): Leverage DoorData and persistent data +## Example 4: fix(Scripts/SlavePens): Despawn Frozen Core after Ahune emerges +## Example 5: fix(Scripts/VioletHold): Prevent Sinclari from despawning ### DESCRIPTION @@ -46,7 +48,7 @@ ## More info here https://www.conventionalcommits.org/en/v1.0.0-beta.2/ ## ======================================================= ## "Scope" can be: -## CORE (core related, c++) +## Core (core related, c++) ## DB (database related, sql) ## ======================================================= ## "Subscope" is optional and depends on the nature of the commit. diff --git a/.vscode/settings.json b/.vscode/settings.json index 28948d16c9..b76b4f283f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,9 @@ { + "github.copilot.chat.commitMessageGeneration.instructions": [ + { + "file": ".git_commit_template.txt" + }, + ], "files.associations": { "*.dist": "properties", "*.crash": "properties",