Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add issue templates #1

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: ❓ Simple question - Discord chat
url: https://discord.com/invite/flarenetwork
about: This issue tracker is not for technical support. Please use the Discord chat, and ask the community for help.
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Documentation
description: Report an issue related to documentation
labels: [documentation]
body:
- type: markdown
attributes:
value: |
This template is strictly used for issues with documentation, including:

- Documenting undocumented APIs;
- Updating external links;

You can proceed directly to sending a pull request without filing this issue, and we can improve on your work.
If you think some of the requirements above are not met, or if you are not able to contribute yourself, the issue is still welcomed.

- type: textarea
attributes:
label: Description
description: A clear and concise description of what the issue is.
validations:
required: true
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Feature Request
description: Submit a feature request for the documentation
labels: [feature]
body:
- type: markdown
attributes:
value: |
This template is strictly used for feature requests, including:

- Requesting a new guide or tutorial;
- Requesting elaboration on a particular topic;

- type: textarea
attributes:
label: Description
description: A clear and concise description of what the feature is.
validations:
required: true
Loading