|
| 1 | +name: Maintenance Issue |
| 2 | +description: Dependency updates, tooling, or infrastructure improvements |
| 3 | +title: "[Maintenance]: " |
| 4 | +labels: ["maintenance", "dependencies"] |
| 5 | +type: feature |
| 6 | +body: |
| 7 | + - type: markdown |
| 8 | + attributes: |
| 9 | + value: | |
| 10 | + Use this template to track dependency updates, tooling improvements, CI/CD enhancements, or other maintenance tasks. |
| 11 | +
|
| 12 | + - type: dropdown |
| 13 | + id: maintenance-type |
| 14 | + attributes: |
| 15 | + label: Maintenance type |
| 16 | + description: What kind of update or improvement is this? |
| 17 | + options: |
| 18 | + - Dependency upgrade |
| 19 | + - Python version support |
| 20 | + - Copier version compatibility |
| 21 | + - CI/CD improvement |
| 22 | + - Test infrastructure |
| 23 | + - Code quality tooling |
| 24 | + - Documentation infrastructure |
| 25 | + - Other |
| 26 | + default: 0 |
| 27 | + validations: |
| 28 | + required: true |
| 29 | + |
| 30 | + - type: textarea |
| 31 | + id: description |
| 32 | + attributes: |
| 33 | + label: Description |
| 34 | + description: What needs to be updated or improved? |
| 35 | + placeholder: "Describe the maintenance task..." |
| 36 | + validations: |
| 37 | + required: true |
| 38 | + |
| 39 | + - type: textarea |
| 40 | + id: motivation |
| 41 | + attributes: |
| 42 | + label: Motivation |
| 43 | + description: Why is this important? What's the benefit? |
| 44 | + placeholder: | |
| 45 | + - Security: [reason] |
| 46 | + - Performance: [reason] |
| 47 | + - Compatibility: [reason] |
| 48 | + - Best practices: [reason] |
| 49 | + validations: |
| 50 | + required: true |
| 51 | + |
| 52 | + - type: input |
| 53 | + id: affected-areas |
| 54 | + attributes: |
| 55 | + label: Affected areas |
| 56 | + description: What parts of the project are affected? |
| 57 | + placeholder: "e.g., pyproject.toml, .github/workflows, Makefile" |
| 58 | + |
| 59 | + - type: textarea |
| 60 | + id: acceptance-criteria |
| 61 | + attributes: |
| 62 | + label: Acceptance criteria |
| 63 | + description: How will we know this is done? (optional) |
| 64 | + placeholder: | |
| 65 | + - [ ] Dependency updated to version X |
| 66 | + - [ ] Tests pass on all Python versions |
| 67 | + - [ ] CI/CD pipeline executes successfully |
| 68 | +
|
| 69 | + - type: checkboxes |
| 70 | + id: checklist |
| 71 | + attributes: |
| 72 | + label: Pre-submission checklist |
| 73 | + options: |
| 74 | + - label: I have checked for existing maintenance issues |
| 75 | + required: true |
| 76 | + - label: I have provided clear motivation |
| 77 | + required: true |
0 commit comments