docs: add branching policy to copilot-instructions (#47)

This commit is contained in:
Steven Mosley 2025-09-23 20:54:28 -05:00 committed by GitHub
commit 63e6074a34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 4 deletions

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. * [ ] 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. * [ ] 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.

View File

@ -1,11 +1,14 @@
{ {
"chat.modeFilesLocations": { "chat.modeFilesLocations": {
"chatmodes": true "chatmodes": true,
".github/chatmodes": true
}, },
"chat.promptFilesLocations": { "chat.promptFilesLocations": {
"prompts": true "prompts": true,
".github/prompts": true
}, },
"chat.instructionsFilesLocations": { "chat.instructionsFilesLocations": {
"instructions": true "instructions": true,
".github/instructions": true
} }
} }