-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from issue-ops/ncalteen/72
Default to template field ID for parsed issue body key
- Loading branch information
Showing
31 changed files
with
645 additions
and
202 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
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 |
---|---|---|
|
@@ -17,3 +17,4 @@ Thumbs.db | |
|
||
# Extra | ||
tmp/ | ||
.env |
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 |
---|---|---|
|
@@ -10,4 +10,4 @@ node_modules/ | |
*.scss | ||
dist/ | ||
coverage/ | ||
__fixtures__/ | ||
__fixtures__/**/*.md |
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
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
{ | ||
"the_name_of_the_thing": { "type": "input", "required": true } | ||
"name": { | ||
"label": "The Name of the Thing", | ||
"type": "input", | ||
"required": true | ||
} | ||
} |
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
{ | ||
"the_name_of_the_thing": "this-thing", | ||
"the_nickname_of_the_thing": "thing", | ||
"the_color_of_the_thing": ["blue"], | ||
"the_shape_of_the_thing": ["square"], | ||
"the_sounds_of_the_thing": ["re", "mi"], | ||
"the_topics_about_the_thing": [], | ||
"the_description_of_the_thing": "This is a description.\n\nIt has multiple lines.\n\nIt's pretty cool!", | ||
"the_notes_about_the_thing": "- Note\n- Another note\n- Lots of notes", | ||
"the_code_of_the_thing": "const thing = new Thing()\nthing.doThing()", | ||
"the_string_method_of_the_code_of_the_thing": "thing.toString()", | ||
"is_the_thing_a_thing": { | ||
"name": "this-thing", | ||
"nickname": "thing", | ||
"color": ["blue"], | ||
"shape": ["square"], | ||
"sounds": ["re", "mi"], | ||
"topics": [], | ||
"description": "This is a description.\n\nIt has multiple lines.\n\nIt's pretty cool!", | ||
"notes": "- Note\n- Another note\n- Lots of notes", | ||
"code": "const thing = new Thing()\nthing.doThing()", | ||
"code-string": "thing.toString()", | ||
"is-thing": { | ||
"selected": ["Yes"], | ||
"unselected": ["No"] | ||
}, | ||
"is_the_thing_useful": { | ||
"is-thing-useful": { | ||
"selected": ["Sometimes"], | ||
"unselected": ["Yes", "No"] | ||
}, | ||
"read_team": "IssueOps-Demo-Readers", | ||
"write_team": "IssueOps-Demo-Writers" | ||
"read-team": "IssueOps-Demo-Readers", | ||
"write-team": "IssueOps-Demo-Writers" | ||
} |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"model_description": "who's molecule is this? (we don't know)", | ||
"ersilia_id": [], | ||
"description": "who's molecule is this? (we don't know)", | ||
"id": [], | ||
"code": [] | ||
} |
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 |
---|---|---|
@@ -1,21 +1,28 @@ | ||
{ | ||
"model_name": { "type": "input", "required": true }, | ||
"model_description": { "type": "input", "required": false }, | ||
"ersilia_id": { | ||
"name": { "label": "Model Name", "type": "input", "required": true }, | ||
"description": { | ||
"label": "Model Description", | ||
"type": "input", | ||
"required": false | ||
}, | ||
"id": { | ||
"label": "Ersilia ID", | ||
"type": "dropdown", | ||
"required": true, | ||
"multiple": false, | ||
"options": ["abc123", "def456"] | ||
}, | ||
"publication": { | ||
"label": "Publication", | ||
"type": "textarea", | ||
"required": false | ||
}, | ||
"code": { | ||
"label": "Code", | ||
"type": "dropdown", | ||
"required": true, | ||
"multiple": false, | ||
"options": ["123abc", "456def"] | ||
}, | ||
"license": { "type": "input", "required": true } | ||
"license": { "label": "License", "type": "input", "required": true } | ||
} |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
{ | ||
"the_name_of_the_thing": { "type": "input", "required": true } | ||
"name": { | ||
"label": "The Name of the Thing", | ||
"type": "input", | ||
"required": true | ||
} | ||
} |
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 |
---|---|---|
@@ -1,4 +1,8 @@ | ||
{ | ||
"this_isnt_a_good_issue": { "type": "input", "required": true }, | ||
"empty_header": { "type": "input", "required": false } | ||
"bad": { | ||
"label": "This isn't a good issue", | ||
"type": "input", | ||
"required": true | ||
}, | ||
"empty": { "label": "Empty header", "type": "input", "required": false } | ||
} |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"model_description": "who's molecule is this? (we don't know)", | ||
"ersilia_id": [], | ||
"description": "who's molecule is this? (we don't know)", | ||
"id": [], | ||
"publication": "The following link is just an example:\n\n`www.example.com`", | ||
"code": [] | ||
} |
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 |
---|---|---|
@@ -1,21 +1,28 @@ | ||
{ | ||
"model_name": { "type": "input", "required": true }, | ||
"model_description": { "type": "input", "required": false }, | ||
"ersilia_id": { | ||
"name": { "label": "Model Name", "type": "input", "required": true }, | ||
"description": { | ||
"label": "Model Description", | ||
"type": "input", | ||
"required": false | ||
}, | ||
"id": { | ||
"label": "Ersilia ID", | ||
"type": "dropdown", | ||
"required": true, | ||
"multiple": false, | ||
"options": ["abc123", "def456"] | ||
}, | ||
"publication": { | ||
"label": "Publication", | ||
"type": "textarea", | ||
"required": false | ||
}, | ||
"code": { | ||
"label": "Code", | ||
"type": "dropdown", | ||
"required": true, | ||
"multiple": false, | ||
"options": ["123abc", "456def"] | ||
}, | ||
"license": { "type": "input", "required": true } | ||
"license": { "label": "License", "type": "input", "required": true } | ||
} |
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,65 @@ | ||
### The Name of the Thing | ||
|
||
this-thing | ||
|
||
### The Nickname of the Thing | ||
|
||
thing | ||
|
||
### The Color of the Thing | ||
|
||
blue | ||
|
||
### The Shape of the Thing | ||
|
||
square | ||
|
||
### The Sounds of the Thing | ||
|
||
re, mi | ||
|
||
### The Topics About the Thing | ||
|
||
_No response_ | ||
|
||
### The Description of the Thing | ||
|
||
This is a description. | ||
|
||
It has multiple lines. | ||
|
||
It's pretty cool! | ||
|
||
### The Notes About the Thing | ||
|
||
- Note | ||
- Another note | ||
- Lots of notes | ||
|
||
### The Code of the Thing | ||
|
||
const thing = new Thing() | ||
thing.doThing() | ||
|
||
### The String Method of the Code of the Thing | ||
|
||
thing.toString() | ||
|
||
### Is the Thing a Thing? | ||
|
||
- [x] Yes | ||
- [ ] No | ||
|
||
### Is the Thing Useful? | ||
|
||
- [ ] Yes | ||
- [x] Sometimes | ||
- [ ] No | ||
|
||
### Read Team | ||
|
||
IssueOps-Demo-Readers | ||
|
||
### Write Team | ||
|
||
IssueOps-Demo-Writers |
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,22 @@ | ||
{ | ||
"the_name_of_the_thing": "this-thing", | ||
"the_nickname_of_the_thing": "thing", | ||
"the_color_of_the_thing": ["blue"], | ||
"the_shape_of_the_thing": ["square"], | ||
"the_sounds_of_the_thing": ["re", "mi"], | ||
"the_topics_about_the_thing": [], | ||
"the_description_of_the_thing": "This is a description.\n\nIt has multiple lines.\n\nIt's pretty cool!", | ||
"the_notes_about_the_thing": "- Note\n- Another note\n- Lots of notes", | ||
"the_code_of_the_thing": "const thing = new Thing()\nthing.doThing()", | ||
"the_string_method_of_the_code_of_the_thing": "thing.toString()", | ||
"is_the_thing_a_thing": { | ||
"selected": ["Yes"], | ||
"unselected": ["No"] | ||
}, | ||
"is_the_thing_useful": { | ||
"selected": ["Sometimes"], | ||
"unselected": ["Yes", "No"] | ||
}, | ||
"read_team": "IssueOps-Demo-Readers", | ||
"write_team": "IssueOps-Demo-Writers" | ||
} |
Oops, something went wrong.