From 9e253feabe54dc1266911969becc2b25b4bafdce Mon Sep 17 00:00:00 2001 From: Kirk Byers Date: Fri, 17 Nov 2023 11:57:21 -0800 Subject: [PATCH] Add an issue template to GH --- .github/ISSUE_TEMPLATE | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE diff --git a/.github/ISSUE_TEMPLATE b/.github/ISSUE_TEMPLATE new file mode 100644 index 000000000..b293cb1ab --- /dev/null +++ b/.github/ISSUE_TEMPLATE @@ -0,0 +1,37 @@ +### Description of Issue/Question + +*Note*: Please check https://guides.github.com/features/mastering-markdown/ +to see how to properly format your request. + +### Setup + +### Netmiko version +(Paste verbatim output from `pip freeze | grep netmiko` between quotes below) + +``` + +``` + +### Netmiko device_type (if relevant to the issue) +(Paste `device_type` between quotes below) + +``` + +``` + +### Steps to Reproduce the Issue + +### Error Traceback +(Paste the complete traceback of the exception between quotes below) + +``` + +``` + +### Relevant Python code +(Please try to essentialize your Python code to the minimum code needed to reproduce the issue) +(Paste the code between the quotes below) + +```python + +```