diff options
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug-report.yml | 42 | ||||
-rwxr-xr-x | .github/ISSUE_TEMPLATE/bug_report.md | 38 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 6 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature-request.yml | 38 | ||||
-rwxr-xr-x | .github/ISSUE_TEMPLATE/feature_request.md | 23 |
5 files changed, 86 insertions, 61 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 00000000..35b55737 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,42 @@ +name: Bug Report +description: 🐛 File a bug report +title: "[🐛 BUG]: " +labels: ["B-bug", "F-need-verification"] +assignees: + - rustatian +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + + - type: checkboxes + id: search-done + attributes: + label: No duplicates 🥲. + options: + - label: I have searched for a similar issue in our bug tracker and didn't find any solutions. + required: true + - 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: version + attributes: + label: Version + description: What version of our software are you running? + placeholder: 2.6.0 + validations: + required: true + - 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
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100755 index 4d69101b..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[BUG]" -labels: B-bug, F-need-verification -assignees: 48d90782 ---- - -<!-- - Thank you for filing a bug report! 🐛 Please provide a short summary of the bug, - along with any information you feel relevant to replicating the bug. ---> - -I tried this code: - -```go -// code -``` - -I expected to see this happen: *explanation* - -Instead, this happened: *explanation* - -The **version of RR** used: *explanation* - -The **operation system** used: *explanation* - -RR configuration file content: - -```yaml -# Paste here your `.rr.yaml` file content -``` - -Errortrace, Backtrace or Panictrace: - -```text -// backtrace -``` diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..073e3f3b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,6 @@ +blank_issues_enabled: false + +contact_links: + - name: ❓ Start a discussion or ask a question. + url: https://github.com/roadrunner-server/roadrunner/discussions + about: Please ask and answer questions here. diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 00000000..e26fde19 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,38 @@ +name: Feauture request +description: 💡 Suggest an idea for this project +title: "[💡 FEATURE REQUEST]: " +labels: ["C-feature-request"] +assignees: + - rustatian +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to share your idea! + + - type: dropdown + id: plugin + attributes: + label: Plugin + description: What plugin is affected? + options: + - GRPC + - HTTP + - JOBS + - TCP + - File server + - Config + - KV + - Service + - Server + - Status + + - type: textarea + id: idea + attributes: + label: I have an idea! + description: Clear and concise description of your idea. + placeholder: Tell us what you see! + value: "I have an idea, listen to me!!" + validations: + required: true
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100755 index 79b34409..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: "[FEATURE REQUEST]" -labels: C-feature-request -assignees: 48d90782, wolfy-j ---- - -### Is your feature request related to a problem? Please describe. - -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -### Describe the solution you'd like - -A clear and concise description of what you want to happen. - -### Describe alternatives you've considered - -A clear and concise description of any alternative solutions or features you've considered. - -### Additional context - -Add any other context or screenshots about the feature request here. |