task.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. name: Task
  2. description: Create a new task (documentation, maintenance, etc.)
  3. title: "[Task]: "
  4. labels: ["task"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Use this template to create a new task for documentation, maintenance, or other project work.
  10. - type: dropdown
  11. id: type
  12. attributes:
  13. label: Task Type
  14. description: What type of task is this?
  15. options:
  16. - Docs
  17. - Feature
  18. - Bug
  19. - Infrastructure
  20. - Refactoring
  21. validations:
  22. required: true
  23. - type: textarea
  24. id: description
  25. attributes:
  26. label: Task Description
  27. description: Describe what needs to be done
  28. placeholder: "A clear and concise description of the task..."
  29. validations:
  30. required: true
  31. - type: dropdown
  32. id: priority
  33. attributes:
  34. label: Priority
  35. description: How urgent is this task?
  36. options:
  37. - High
  38. - Medium
  39. - Low
  40. validations:
  41. required: true
  42. - type: textarea
  43. id: additional
  44. attributes:
  45. label: Additional Information
  46. description: Any additional context or resources needed for this task