-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: "Change Request" | ||
description: Propose a change to the seq-json specification | ||
labels: ["CR"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the initiative and proposing a change to this specification. Writing this issue is the start of specification change process outlined [here]() | ||
- type: input | ||
id: stakeholder | ||
attributes: | ||
label: Requester | ||
description: Stakeholder (organization, mission, etc.) requesting this change | ||
placeholder: ex. FireSat | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem Description | ||
description: What is the current issue with the specification that does not meet your needs? Why does it not meet your needs? | ||
placeholder: Tell us the problem | ||
value: "[...] part of the specification does not work for my mission, organization, flight software, etc." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: proposal | ||
attributes: | ||
label: Proposed Change | ||
description: Describe a change to the specification that would allow for it to meet your needs. | ||
placeholder: Tell us what you want | ||
value: "Changing [...] part of the specification to [...] would meet my needs because [...]" | ||
validations: | ||
required: false | ||
- type: input | ||
id: need-date | ||
attributes: | ||
label: Time Sensitivity/Criticality | ||
description: Note whether there is a time sensitivity for resolving this problem or whether this is a complete blocker for you to use the specification | ||
placeholder: Tell us how important this is | ||
value: "This change needs to be completed by [...] so that my mission will be ready to [...]" | ||
validations: | ||
required: false |