microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
.github/ISSUE_TEMPLATE/instruction-file-request.yml
48lines · modecode
| 1 | name: Copilot Instruction File Request |
| 2 | description: Request a new GitHub Copilot instruction file |
| 3 | title: "feat(instructions): " |
| 4 | labels: ["instruction-file", "needs-triage"] |
| 5 | body: |
| 6 | - type: markdown |
| 7 | attributes: |
| 8 | value: | |
| 9 | Request a new Copilot instruction file for a specific context or workflow. |
| 10 | |
| 11 | - type: input |
| 12 | id: file-name |
| 13 | attributes: |
| 14 | label: Instruction File Name |
| 15 | description: What should the instruction file be named? |
| 16 | placeholder: e.g., "code-review-assistant.instructions.md" |
| 17 | validations: |
| 18 | required: true |
| 19 | |
| 20 | - type: dropdown |
| 21 | id: scope |
| 22 | attributes: |
| 23 | label: Scope |
| 24 | description: What type of instruction file is this? |
| 25 | options: |
| 26 | - Workspace-level (applies to entire repository) |
| 27 | - Folder-level (applies to specific directory) |
| 28 | - File-level (applies to specific file type) |
| 29 | validations: |
| 30 | required: true |
| 31 | |
| 32 | - type: textarea |
| 33 | id: purpose |
| 34 | attributes: |
| 35 | label: Purpose |
| 36 | description: What problem does this instruction file solve? |
| 37 | placeholder: Describe the context or workflow this instruction file should support |
| 38 | validations: |
| 39 | required: true |
| 40 | |
| 41 | - type: textarea |
| 42 | id: requirements |
| 43 | attributes: |
| 44 | label: Requirements |
| 45 | description: What specific behaviors or guidelines should this instruction file include? |
| 46 | placeholder: List the key requirements for this instruction file |
| 47 | validations: |
| 48 | required: false |
| 49 | |