|
| 1 | +name: Example Request |
| 2 | +description: Submit an example request |
| 3 | +title: '[Request] Example' |
| 4 | + |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + # Example Request |
| 10 | +
|
| 11 | + This is an example request. |
| 12 | +
|
| 13 | + ## Instructions |
| 14 | +
|
| 15 | + 1. Fill out the form below. |
| 16 | + 2. Submit the request. |
| 17 | + 3. Wait for the request to be processed. |
| 18 | + - type: input |
| 19 | + id: name |
| 20 | + attributes: |
| 21 | + label: The Name of the Thing |
| 22 | + description: The name of the thing you want to create. |
| 23 | + placeholder: this-is-the-thing |
| 24 | + validations: |
| 25 | + required: true |
| 26 | + - type: input |
| 27 | + id: nickname |
| 28 | + attributes: |
| 29 | + label: The Nickname of the Thing |
| 30 | + description: (Optional) The nickname of the thing you want to create. |
| 31 | + placeholder: the-thing |
| 32 | + validations: |
| 33 | + required: false |
| 34 | + - type: dropdown |
| 35 | + id: color |
| 36 | + attributes: |
| 37 | + label: The Color of the Thing |
| 38 | + description: The color of the thing you want to create. |
| 39 | + multiple: false |
| 40 | + options: |
| 41 | + - blue |
| 42 | + - black |
| 43 | + - green |
| 44 | + - orange |
| 45 | + - purple |
| 46 | + - red |
| 47 | + - white |
| 48 | + - yellow |
| 49 | + validations: |
| 50 | + required: true |
| 51 | + - type: dropdown |
| 52 | + id: shape |
| 53 | + attributes: |
| 54 | + label: The Shape of the Thing |
| 55 | + description: (Optional) The shape of the thing you want to create. |
| 56 | + multiple: false |
| 57 | + options: |
| 58 | + - circle |
| 59 | + - square |
| 60 | + - triangle |
| 61 | + validations: |
| 62 | + required: false |
| 63 | + - type: dropdown |
| 64 | + id: sounds |
| 65 | + attributes: |
| 66 | + label: The Sounds of the Thing |
| 67 | + description: (Multiple) The sounds(s) the thing makes. |
| 68 | + multiple: true |
| 69 | + options: |
| 70 | + - do |
| 71 | + - re |
| 72 | + - mi |
| 73 | + - fa |
| 74 | + - so |
| 75 | + - la |
| 76 | + - ti |
| 77 | + validations: |
| 78 | + required: true |
| 79 | + - type: dropdown |
| 80 | + id: topics |
| 81 | + attributes: |
| 82 | + label: The Topics About the Thing |
| 83 | + description: | |
| 84 | + (Multiple / Optional) The topic(s) about the thing you want to create. |
| 85 | + multiple: true |
| 86 | + options: |
| 87 | + - cool |
| 88 | + - fun |
| 89 | + - interesting |
| 90 | + - neat |
| 91 | + validations: |
| 92 | + required: false |
| 93 | + - type: textarea |
| 94 | + id: description |
| 95 | + attributes: |
| 96 | + label: The Description of the Thing |
| 97 | + description: The description of the thing you want to create. |
| 98 | + placeholder: This is a description of the thing. |
| 99 | + validations: |
| 100 | + required: true |
| 101 | + - type: textarea |
| 102 | + id: notes |
| 103 | + attributes: |
| 104 | + label: The Notes About the Thing |
| 105 | + description: (Optional) The notes about the thing you want to create. |
| 106 | + placeholder: These are notes about the thing. |
| 107 | + validations: |
| 108 | + required: false |
| 109 | + - type: textarea |
| 110 | + id: code |
| 111 | + attributes: |
| 112 | + label: The Code of the Thing |
| 113 | + description: The code of the thing you want to create. |
| 114 | + render: js |
| 115 | + placeholder: | |
| 116 | + const thing = new Thing() |
| 117 | + thing.doSomething() |
| 118 | + validations: |
| 119 | + required: true |
| 120 | + - type: textarea |
| 121 | + id: code-string |
| 122 | + attributes: |
| 123 | + label: The String Method of the Code of the Thing |
| 124 | + description: (Optional) The method to return the thing as a string. |
| 125 | + render: js |
| 126 | + placeholder: | |
| 127 | + thing.toString() |
| 128 | + validations: |
| 129 | + required: false |
| 130 | + - type: checkboxes |
| 131 | + id: is-thing |
| 132 | + attributes: |
| 133 | + label: Is the Thing a Thing? |
| 134 | + description: Is the thing a thing? |
| 135 | + options: |
| 136 | + - label: 'Yes' |
| 137 | + required: true |
| 138 | + - label: 'No' |
| 139 | + required: false |
| 140 | + - type: checkboxes |
| 141 | + id: is-thing-useful |
| 142 | + attributes: |
| 143 | + label: Is the Thing Useful? |
| 144 | + description: (Optional) Is the thing a useful thing? |
| 145 | + options: |
| 146 | + - label: 'Yes' |
| 147 | + required: false |
| 148 | + - label: Sometimes |
| 149 | + required: false |
| 150 | + - label: 'No' |
| 151 | + required: false |
| 152 | + - type: input |
| 153 | + id: read-team |
| 154 | + attributes: |
| 155 | + label: Read Team |
| 156 | + description: | |
| 157 | + The read-only GitHub Team (hint: `IssueOps-Demo-Readers`). |
| 158 | + placeholder: IssueOps-Demo-Readers |
| 159 | + validations: |
| 160 | + required: true |
| 161 | + - type: input |
| 162 | + id: write-team |
| 163 | + attributes: |
| 164 | + label: Write Team |
| 165 | + description: | |
| 166 | + The write-access GitHub Team (hint: `IssueOps-Demo-Writers`). |
| 167 | + placeholder: IssueOps-Demo-Writers |
| 168 | + validations: |
| 169 | + required: true |
0 commit comments