mirror of
https://github.com/fmhy/edit.git
synced 2026-02-19 01:31:41 +11:00
53 lines
2 KiB
YAML
53 lines
2 KiB
YAML
# Define a form for creating an issue in the FMHY project
|
|
name: Create Issue
|
|
description: 'Help us improve FMHY for everyone'
|
|
|
|
# Define the issue's title
|
|
title: '<title>'
|
|
|
|
# The body of the issue, consisting of multiple form elements
|
|
body:
|
|
# A markdown element for formatting the initial description
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
# Thanks for submitting an issue!
|
|
Please select your issue type.
|
|
|
|
# Another markdown element for providing additional information
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
### Things to note
|
|
* Anyone can suggest [changes or corrections](https://rentry.org/fmhyedit) to the wiki. Please read our [Contribution Guide](https://rentry.co/Contrib-Guide) before trying to add or remove anything.
|
|
* If you're adding a new site, please [search](https://raw.githubusercontent.com/fmhy/FMHYedit/main/single-page) (control + f) first to make sure we don't already have it.
|
|
* Approved changes will be applied to the [site](https://fmhy.net) and all [🔒 backups](https://github.com/fmhy/FMHY/wiki/Backups).
|
|
* You can send us stuff directly via [💬 Discord](https://discord.gg/5W9QJKuPkD).
|
|
* You can also check out our [website](https://fmhy.net) and the [posts](https://fmhy.net/posts) section to know about any major updates to the wiki.
|
|
|
|
# A dropdown element for selecting the issue type
|
|
- type: dropdown
|
|
id: type
|
|
attributes:
|
|
label: Type
|
|
description: Type that best describes this issue.
|
|
options:
|
|
- Bad sites
|
|
- Grammar / Markdown
|
|
- Site suggestion
|
|
- Wiki section suggestion
|
|
default: 0
|
|
validations:
|
|
required: true
|
|
|
|
# A textarea element for providing additional context about the issue
|
|
- type: textarea
|
|
id: context
|
|
attributes:
|
|
label: Add additional context
|
|
description:
|
|
A clear and concise description of what the issue is, as per your
|
|
selected issue type.
|
|
placeholder: https://fmhy.net is cool and should be added
|
|
validations:
|
|
required: true
|