Skip to content

Commit f9f38ad

Browse files
committed
default category is None
1 parent 2ca2be9 commit f9f38ad

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/ISSUE_TEMPLATE/01_submission.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ body:
5858
in a comment.
5959
multiple: false
6060
options:
61-
- Other
61+
- Select one...
6262
- SDK
6363
- Application
6464
- Tooling
@@ -71,6 +71,7 @@ body:
7171
- Qiskit addon
7272
- Game
7373
- Paper artifact
74+
- Other
7475
default: 0
7576
validations:
7677
required: true

ecosystem/cli/ci.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ def update_issue_template(
6060
if section["id"] == "labels":
6161
section["attributes"]["options"] = labels_toml.label_names
6262
elif section["id"] == "category":
63-
section["attributes"]["options"] = labels_toml.category_names
63+
section["attributes"]["options"] = [
64+
"Select one..."
65+
] + labels_toml.category_names
6466

6567
with open(template_path, "w") as yaml_file:
6668
yaml.dump(data, yaml_file)

ecosystem/resources/labels.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
[[categories]]
2-
name = "Other"
3-
description = "Projects that extend, interface with, or use Qiskit in interesting ways"
4-
51
[[categories]]
62
name = "SDK"
73
description = "A software development kit. Provides an interface to build software on top of it. "
@@ -55,6 +51,10 @@ description = "Games or playful educational resources"
5551
name = "Paper artifact"
5652
description = "Code or dataset needed to reproduce a specific paper. Probably, without long-term support."
5753

54+
[[categories]]
55+
name = "Other"
56+
description = "Projects that extend, interface with, or use Qiskit in interesting ways"
57+
5858
[[labels]]
5959
name = "chemistry"
6060
description = "Applies quantum computing to chemistry"

0 commit comments

Comments
 (0)