docs: add branching policy to copilot-instructions

Co-authored-by: AstroSteveo <34114851+AstroSteveo@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-09-24 01:39:15 +00:00
parent ed53d053fb
commit 7e7675e447

View File

@ -40,3 +40,12 @@ 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 or issue you are working on.
* [ ] Use descriptive branch names following the convention: `feature/description`, `fix/description`, or `docs/description`.
* [ ] Never commit directly to the `main` branch.
* [ ] Always open a pull request for code changes, even for small updates.
* [ ] Ensure your branch is up to date with `main` before opening a pull request.
* [ ] Delete the branch after the pull request is merged.