Skip to content
Open
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
32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/Bug_report.md

This file was deleted.

23 changes: 0 additions & 23 deletions .github/ISSUE_TEMPLATE/Feature_request.md

This file was deleted.

18 changes: 0 additions & 18 deletions .github/ISSUE_TEMPLATE/Support_question.md

This file was deleted.

94 changes: 94 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
name: Bug Report
description: File a bug report.
title: "🐛(Bug) "
labels: ["triage"]
projects: ["suitenumerique/2"]
assignees:
- virgile-dev
type: bug
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: markdown
attributes:
value: |
Before filing a new issue, please do a quick search in the issues / prs list to avoid duplicates.
- type: markdown
attributes:
value: |
We use [BlockNote](https://www.blocknotejs.org/) for the text editing features of Docs. If you find an issue with the editor and are able to reproduce it on their [demo](https://www.blocknotejs.org/demo) it's best to report it directly on the [BlockNote repository](https://github.com/TypeCellOS/BlockNote/issues).
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
value: "A bug happened!"
validations:
required: true
- type: textarea
id: solution
attributes:
label: Possible solution?
description: If you have suggestions on a fix for the bug
placeholder: Try this, or that ...
value: "I have a solution!"
validations:
required: false
- type: textarea
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Input should be enough for that:

Suggested change
- type: textarea
- type: input

As it is now:

Image

id: version
attributes:
label: Version
description: What version of our software are you running?
value: "4.x.x"
validations:
required: false
- type: input
id: instance
attributes:
label: Instance url
description: What's your instance url?
value: "docs.example.org"
validations:
required: false
- type: dropdown
id: browsers
attributes:
label: What browsers are you seeing the problem on?
multiple: true
options:
- Firefox
- Chrome
- Safari
- Microsoft Edge
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
- type: upload
id: screenshots
attributes:
label: Upload screenshots
description: If applicable, add screenshots to help explain your problem.
validations:
required: false
- type: input
id: contact
attributes:
label: Contact Details
description: How can we get in touch with you if we need more info?
placeholder: ex. email@example.com
validations:
required: false
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](CODE_OF_CONDUCT.md).
options:
- label: I agree to follow this project's Code of Conduct
required: true
6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
blank_issues_enabled: false

contact_links:
- name: Support question
url: https://matrix.to/#/#docs-official:matrix.org
about: If you have a question, or something was not clear from the docs, reach out for help on our Matrix Channel or email us at docs.team@la-suite.eu
70 changes: 70 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Feature request
description: Suggest an new feature or an enhancement.
title: "✨(feature) "
labels: ["triage"]
projects: ["suitenumerique/2"]
assignees:
- virgile-dev
type: feature
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to suggest a feature!
- type: markdown
attributes:
value: |
Before filing a new issue, please do a quick search in the issues / prs list to avoid duplicates.
- type: markdown
attributes:
value: |
We use [BlockNote](https://www.blocknotejs.org/) for the text editing features of Docs. It's best to suggest features on the text editor directly on the [BlockNote repository](https://github.com/TypeCellOS/BlockNote/discussions/categories/ideas-enhancements).
- type: textarea
id: problem
attributes:
label: What problem do you want to fix?
description: A concise description of what the problem is.
placeholder:
value: "My problem is"
validations:
required: true
- type: textarea
id: solution
attributes:
label: Possible solution?
description: A concise description of what you need to fix your problem.
placeholder: I
value: "I need this feature"
validations:
required: true
- type: textarea
id: alternative
attributes:
label: Do you have an alternative?
description: If you found a workaround or have thought of another way to solve your problem.
value: "My workaround is ..."
validations:
required: false
- type: upload
id: screenshots
attributes:
label: Upload
description: If applicable, add screenshots to help explain your problem.
validations:
required: false
- type: input
id: contact
attributes:
label: Contact Details
description: How can we get in touch with you if we need more info?
placeholder: ex. email@example.com
validations:
required: false
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](CODE_OF_CONDUCT.md).
options:
- label: I agree to follow this project's Code of Conduct
required: true
Loading