Skip to content

Commit 0cc28a9

Browse files
committed
Fix to add validations for required for certain inputs
1 parent 7b58994 commit 0cc28a9

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/ISSUE_TEMPLATE/CODING-GUIDELINE.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ body:
4343
description: The title of a guideline. Should be punchy and short. Write an Amplification to expand!
4444
placeholder: We shall not allow `foo` when `bar`
4545
validations:
46-
required: false
46+
required: true
4747
- type: dropdown
4848
id: category
4949
attributes:
@@ -55,14 +55,17 @@ body:
5555
- Required
5656
- Advisory
5757
- Disapplied
58+
validations:
59+
required: true
5860
- type: dropdown
5961
id: status
6062
attributes:
6163
label: Status
6264
description: The Status when first submitted must always be Draft. Status can be updated over time to Approved and/or Retired.
63-
multiple: true
6465
options:
6566
- Draft
67+
validations:
68+
required: true
6669
- type: input
6770
id: release-begin
6871
attributes:
@@ -92,10 +95,11 @@ body:
9295
attributes:
9396
label: Decidability
9497
description: Decidable - This guideline can be automatically checked with tooling. Undecidable - This guideline can not be automatically checked with tooling.
95-
multiple: true
9698
options:
9799
- Decidable
98100
- Undecidable
101+
validations:
102+
required: true
99103
- type: dropdown
100104
id: scope
101105
attributes:
@@ -106,6 +110,8 @@ body:
106110
- Module
107111
- Crate
108112
- System
113+
validations:
114+
required: true
109115
- type: textarea
110116
id: tags
111117
attributes:
@@ -123,7 +129,7 @@ body:
123129
validations:
124130
required: false
125131
- type: textarea
126-
id: exception
132+
id: exceptions
127133
attributes:
128134
label: Exception(s)
129135
description: An Exception is a chance to specify conditions under which this Guideline does not apply. Zero or more may be supplied.

0 commit comments

Comments
 (0)