Skip to content

Commit 21def93

Browse files
authored
🔧 chore(github): migrate obituary issue template to YAML (#6)
- replace markdown issue template with a YAML format for better structure - ensure required fields and validations are included in the new template
2 parents 257478f + de3ae66 commit 21def93

File tree

2 files changed

+80
-14
lines changed

2 files changed

+80
-14
lines changed

.github/ISSUE_TEMPLATE/add-an-obituary.md

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
name: "Add an Obituary 💀"
2+
description: Report a dead or dying product to Killed by Scrum.org.
3+
title: "[Obituary]: "
4+
labels: ["obituary"]
5+
assignees: []
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to report a dead or dying product! Please fill out the information below to help us create an accurate obituary.
11+
12+
- type: input
13+
id: product-name
14+
attributes:
15+
label: "Product Name"
16+
description: "What's the name of the product?"
17+
placeholder: "e.g. Certification Program"
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: product-description
23+
attributes:
24+
label: "Product Description"
25+
description: "Describe the product in a single sentence."
26+
placeholder: "A brief, clear description of what this product was or did..."
27+
validations:
28+
required: true
29+
30+
- type: input
31+
id: launch-date
32+
attributes:
33+
label: "Launch Date"
34+
description: "When was the product launched? Provide a specific date, if possible."
35+
placeholder: "e.g. January 15, 2020 or Q2 2020"
36+
validations:
37+
required: true
38+
39+
- type: input
40+
id: discontinuation-date
41+
attributes:
42+
label: "Discontinuation Date"
43+
description: "When was the product discontinued? Provide a specific date, if possible."
44+
placeholder: "e.g. March 30, 2024 or Q1 2024"
45+
validations:
46+
required: false
47+
48+
- type: dropdown
49+
id: product-type
50+
attributes:
51+
label: "Product Type"
52+
description: "What type of product was it?"
53+
options:
54+
- Course
55+
- Service
56+
- Initiative
57+
- Application
58+
- Other
59+
validations:
60+
required: true
61+
62+
- type: textarea
63+
id: additional-info
64+
attributes:
65+
label: "Additional Information"
66+
description: "Any additional context, links, or information about this product's death/discontinuation?"
67+
placeholder: "Links to announcements, reasons for discontinuation, impact on users, etc."
68+
validations:
69+
required: false
70+
71+
- type: checkboxes
72+
id: terms
73+
attributes:
74+
label: "Verification"
75+
description: "Please confirm the following:"
76+
options:
77+
- label: "I have verified that this product is actually dead or discontinued"
78+
required: true
79+
- label: "I have checked that this obituary doesn't already exist on the site"
80+
required: true

0 commit comments

Comments
 (0)