diff options
author | Valery Piashchynski <[email protected]> | 2022-01-15 15:52:23 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-01-15 15:52:23 +0300 |
commit | 65541b95a6ebc72aef818f1d2e4b0dc721f59e22 (patch) | |
tree | d9dbe5577c72810fadf1f2bc1e5fcee889fda983 /.github/ISSUE_TEMPLATE | |
parent | 5254c8eb27311e2a8a53a4c90c3829cf1238c563 (diff) |
initial commit
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.github/ISSUE_TEMPLATE')
-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, 61 insertions, 86 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml deleted file mode 100644 index 35b55737..00000000 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ /dev/null @@ -1,42 +0,0 @@ -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 new file mode 100755 index 00000000..4d69101b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +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 deleted file mode 100644 index c8f3ef0a..00000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,6 +0,0 @@ -blank_issues_enabled: false - -contact_links: - - name: ❓ Start a discussion or ask a question. - url: https://github.com/spiral/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 deleted file mode 100644 index e26fde19..00000000 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ /dev/null @@ -1,38 +0,0 @@ -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 new file mode 100755 index 00000000..79b34409 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,23 @@ +--- +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. |