From 3fa4682a72c8f0e8a0f92f7df59b20a2873a9c03 Mon Sep 17 00:00:00 2001 From: AstroSteveo <34114851+AstroSteveo@users.noreply.github.com> Date: Tue, 23 Sep 2025 20:24:56 -0500 Subject: [PATCH] docs: add branching policy to copilot-instructions --- .github/copilot-instructions.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index d121970..2ebe165 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -40,3 +40,14 @@ The following instructions are only to be applied when performing a code review. * [ ] Encourage the use of `tools`, but it's not required. * [ ] Strongly encourage the use of `model` to specify the model that the chat mode is optimised for. + +## Branching Policy + +- Always create a new branch for each task, feature, or fix. +- Use the following naming conventions: + - `feature/` + - `bugfix/` + - `task/` +- Never commit changes directly to the `main` or default branch. +- After completing changes, push the branch and open a pull request for review and merging. +