-
Notifications
You must be signed in to change notification settings - Fork 0
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 #81 from issue-ops/ncalteen/fields
Default to template field ID for parsed issue body key
- Loading branch information
Showing
40 changed files
with
14,786 additions
and
14,425 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
validators: | ||
- field: read_team | ||
- field: read-team | ||
script: team | ||
- field: write_team | ||
- field: write-team | ||
script: team |
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 |
---|---|---|
|
@@ -18,3 +18,4 @@ Thumbs.db | |
# Extra | ||
tmp/ | ||
linter/ | ||
.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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# :tada: **New Thing Request Validated** | ||
|
||
Your request has been validated! The following details were parsed from your | ||
request. | ||
|
||
<!--prettier-ignore-start--> | ||
<!--markdownlint-disable MD034--> | ||
|
||
| Key | Value | | ||
| ---------- | ---------- | | ||
| `name` | this-thing | | ||
| `nickname` | thing | | ||
| `color` | ["blue"] | | ||
| `shape` | ["square"] | | ||
| `sounds` | ["re","mi"] | | ||
| `topics` | [] | | ||
| `description` | This is a description.<br><br>It has multiple lines.<br><br>It's pretty cool! | | ||
| `notes` | - Note<br>- Another note<br>- Lots of notes | | ||
| `code` | const thing = new Thing()<br>thing.doThing() | | ||
| `code-string` | thing.toString() | | ||
| `is-thing` | {"selected":["Yes","No"],"unselected":[]} | | ||
| `is-thing-useful` | {"selected":["Sometimes"],"unselected":["Yes","No"]} | | ||
| `read-team` | IssueOps-Demo-Readers | | ||
| `write-team` | IssueOps-Demo-Writers-NotATeam | | ||
|
||
<!--prettier-ignore-end--> | ||
|
||
Thank you for using IssueOps! |
File renamed without changes.
File renamed without changes.
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 @@ | ||
{ | ||
"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", "No"], | ||
"unselected": [] | ||
}, | ||
"is-thing-useful": { | ||
"selected": ["Sometimes"], | ||
"unselected": ["Yes", "No"] | ||
}, | ||
"read-team": "IssueOps-Demo-Readers", | ||
"write-team": "IssueOps-Demo-Writers-NotATeam" | ||
} |
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,90 @@ | ||
{ | ||
"name": { | ||
"label": "The Name of the Thing", | ||
"type": "input", | ||
"required": true | ||
}, | ||
"nickname": { | ||
"label": "The Nickname of the Thing", | ||
"type": "input", | ||
"required": false | ||
}, | ||
"color": { | ||
"label": "The Color of the Thing", | ||
"type": "dropdown", | ||
"required": true, | ||
"multiple": false, | ||
"options": [ | ||
"blue", | ||
"black", | ||
"green", | ||
"orange", | ||
"purple", | ||
"red", | ||
"white", | ||
"yellow" | ||
] | ||
}, | ||
"shape": { | ||
"label": "The Shape of the Thing", | ||
"type": "dropdown", | ||
"required": false, | ||
"multiple": false, | ||
"options": ["circle", "square", "triangle"] | ||
}, | ||
"sounds": { | ||
"label": "The Sounds of the Thing", | ||
"type": "dropdown", | ||
"required": true, | ||
"multiple": true, | ||
"options": ["do", "re", "mi", "fa", "so", "la", "ti"] | ||
}, | ||
"topics": { | ||
"label": "The Topics About the Thing", | ||
"type": "dropdown", | ||
"required": false, | ||
"multiple": true, | ||
"options": ["cool", "fun", "interesting", "neat"] | ||
}, | ||
"description": { | ||
"label": "The Description of the Thing", | ||
"type": "textarea", | ||
"required": true | ||
}, | ||
"notes": { | ||
"label": "The Notes About the Thing", | ||
"type": "textarea", | ||
"required": false | ||
}, | ||
"code": { | ||
"label": "The Code of the Thing", | ||
"type": "textarea", | ||
"required": true | ||
}, | ||
"code-string": { | ||
"label": "The String Method of the Code of the Thing", | ||
"type": "textarea", | ||
"required": false | ||
}, | ||
"is-thing": { | ||
"label": "Is the Thing a Thing?", | ||
"type": "checkboxes", | ||
"required": false, | ||
"options": [ | ||
{ "label": "Yes", "required": true }, | ||
{ "label": "No", "required": false } | ||
] | ||
}, | ||
"is-thing-useful": { | ||
"label": "Is the Thing Useful?", | ||
"type": "checkboxes", | ||
"required": false, | ||
"options": [ | ||
{ "label": "Yes", "required": false }, | ||
{ "label": "Sometimes", "required": false }, | ||
{ "label": "No", "required": false } | ||
] | ||
}, | ||
"read-team": { "label": "Read Team", "type": "input", "required": true }, | ||
"write-team": { "label": "Write Team", "type": "input", "required": true } | ||
} |
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.