diff options
author | mormj <34754695+mormj@users.noreply.github.com> | 2021-10-11 07:38:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 07:38:01 -0400 |
commit | eca1825abf616d55fb53d2fe38a4b76a66f885f7 (patch) | |
tree | bbf5b34922716fcee9bcb4f130733ac1fdfe4e88 | |
parent | cf04ca2132d6eff7f807a10141596389afcfbcd5 (diff) |
github: add templates for bug/feature
Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 69 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.yml | 34 |
2 files changed, 103 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000000..5aad103140 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,69 @@ +name: Bug Report +description: File a bug report +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + Before you open an issue we suggest checking the following: + [The wiki](https://wiki.gnuradio.org/index.php/Main_Page) + [The GNU Radio Blocks documentation](https://wiki.gnuradio.org/index.php/Category:Block_Docs) + [The User manual](https://wiki.gnuradio.org/index.php/Usage_Manual) + [GNU Radio community](https://wiki.gnuradio.org/index.php/Chat) + [the mailing list](https://wiki.gnuradio.org/index.php/MailingLists) + + **Please reserve the issue tracker for presumed bugs in the GR codebase - if this is a question about usage or an installation issue, please seek help on the [the mailing list](https://wiki.gnuradio.org/index.php/MailingLists) first** + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + value: "A bug happened!" + validations: + required: true + - type: textarea + id: system-information + attributes: + label: System Information + description: Include information about OS and GNU Radio installation method + value: | + OS: (Linux Distro, Mac, Windows) + GR Installation Method: (native distro packages - apt, rpm, etc., Conda, Source + validations: + required: true + - type: dropdown + id: version + attributes: + label: GNU Radio Version + description: What version of GNU Radio are you running? + options: + - 3.10-git (master) + - 3.9 (maint-3.9) + - 3.8 (maint-3.8) + - 3.7 (maint-3.7) + validations: + required: true + - type: input + id: specific-version + attributes: + label: Specific Version + description: "Value reported with `gnuradio-config-info -v`" + value: "0.0.0.0" + - type: textarea + id: reproduce + attributes: + label: Steps to Reproduce the Problem + description: The simplest set of steps to make the problem occur. + # value: "" + 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 + - type: markdown + attributes: + value: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/gnuradio/gr-governance/blob/main/CODE_OF_CONDUCT.md)
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000000..8dc4791bdb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,34 @@ +name: Feature Request +description: Request a GNU Radio Feature +labels: ["Feature Request"] +body: + - type: markdown + attributes: + value: | + This is the place to request new features or enhancements to the GNU Radio codebase + - type: textarea + id: feature-description + attributes: + label: Feature Description + validations: + required: true + - type: dropdown + id: urgency + attributes: + label: Feature Urgency + description: How urgent is this to get into the codebase? + options: + - high (impacts broad portion of ecosystem) + - medium (would be nice to have in the near future) + - low (just an idea) + validations: + required: true + - type: textarea + id: more-info + attributes: + label: More Information + validations: + required: false + - type: markdown + attributes: + value: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/gnuradio/gr-governance/blob/main/CODE_OF_CONDUCT.md)
\ No newline at end of file |