task.en.yml 628 B

123456789101112131415161718192021222324252627282930313233
  1. name: "🧹 Task"
  2. description: "Engineering task / refactor / maintenance."
  3. title: "[Task]: "
  4. labels: ["task"]
  5. body:
  6. - type: textarea
  7. id: goal
  8. attributes:
  9. label: Goal
  10. placeholder: "What needs to be done and why?"
  11. validations:
  12. required: true
  13. - type: textarea
  14. id: scope
  15. attributes:
  16. label: Scope / checklist
  17. placeholder: |
  18. - [ ] ...
  19. - [ ] ...
  20. validations:
  21. required: false
  22. - type: dropdown
  23. id: risk
  24. attributes:
  25. label: Risk level
  26. options:
  27. - "Low"
  28. - "Medium"
  29. - "High"
  30. validations:
  31. required: true