-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #572 from netbox-community/chore/317
Adds issue and PR templates
- Loading branch information
Showing
7 changed files
with
238 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
name: 🐛 Bug Report | ||
description: Report a reproducible bug in the current release of pynetbox | ||
labels: ["type: bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
**NOTE:** This form is only for reporting _reproducible bugs_ in a current pynetbox release. | ||
- type: input | ||
attributes: | ||
label: pynetbox version | ||
description: What version of pynetbox are you currently running? | ||
placeholder: v7.1.0 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: NetBox version | ||
description: What version of NetBox are you currently running? | ||
placeholder: v3.5.8 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Python version | ||
description: What version of Python are you currently running? | ||
options: | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce | ||
description: > | ||
Please provide a minimal working example to demonstrate the bug. Begin with the | ||
initialization of any necessary database objects and clearly enumerate each | ||
operation carried out. Ensure that your example is as concise as possible | ||
while adequately illustrating the issue. For example: | ||
```python | ||
>>> import pynetbox | ||
>>> nb = pynebox.api('https://netbox.example.com', token='my-token') | ||
``` | ||
Note: **do not utilize the demo instance** for replicating suspected bugs, | ||
as its data is subject to change or removal at any time. | ||
_Please refrain from including any confidential or sensitive | ||
information in your example._ | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: What did you expect to happen? | ||
placeholder: The script should execute without raising any errors or exceptions | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Observed Behavior | ||
description: What happened instead? | ||
placeholder: A TypeError exception was raised | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Reference: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 📖 Contributing Policy | ||
url: https://github.com/netbox-community/netbox/blob/develop/CONTRIBUTING.md | ||
about: "Please read through our contributing policy before opening an issue or pull request." | ||
- name: ❓ Discussion | ||
url: https://github.com/netbox-community/pynetbox/discussions | ||
about: "If you're just looking for help, try starting a discussion instead." | ||
- name: 💬 Community Slack | ||
url: https://netdev.chat | ||
about: "Join #netbox on the NetDev Community Slack for assistance with installation issues and other problems." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: 🗑️ Deprecation | ||
description: The removal of an existing feature or resource | ||
labels: ["type: deprecation"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Proposed Changes | ||
description: > | ||
Describe in detail the proposed changes. What is being removed? | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Justification | ||
description: Please provide justification for the proposed change(s). | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Impact | ||
description: List all areas of the application that will be affected by this change. | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
name: 📖 Documentation Change | ||
description: Suggest an addition or modification to the pynetbox documentation | ||
labels: ["type: documentation"] | ||
body: | ||
- type: dropdown | ||
attributes: | ||
label: Change Type | ||
description: What type of change are you proposing? | ||
options: | ||
- Addition | ||
- Correction | ||
- Removal | ||
- Cleanup (formatting, typos, etc.) | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Area | ||
description: To what section of the documentation does this change primarily pertain? | ||
options: | ||
- Endpoint | ||
- Response | ||
- Request | ||
- IPAM | ||
- Other | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Proposed Changes | ||
description: Describe the proposed changes and why they are necessary. | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
name: ✨ Feature Request | ||
description: Propose a new pynetbox feature or enhancement | ||
labels: ["type: feature"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
**NOTE:** This form is only for submitting well-formed proposals to extend or modify | ||
pynetbox in some way. If you're trying to solve a problem but can't figure out how, or if | ||
you still need time to work on the details of a proposed new feature, please start a | ||
[discussion](https://github.com/netbox-community/pynetbox/discussions) instead. | ||
- type: input | ||
attributes: | ||
label: pynetbox version | ||
description: What version of pynetbox are you currently running? | ||
placeholder: v7.1.0 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: NetBox version | ||
description: What version of NetBox are you currently running? | ||
placeholder: v3.5.8 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Feature type | ||
options: | ||
- Data model extension | ||
- New functionality | ||
- Change to existing functionality | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Proposed functionality | ||
description: > | ||
Describe in detail the new feature or behavior you are proposing. Include any specific changes | ||
to work flows, data models, and/or the user interface. The more detail you provide here, the | ||
greater chance your proposal has of being discussed. Feature requests which don't include an | ||
actionable implementation plan will be rejected. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Use case | ||
description: > | ||
Explain how adding this functionality would benefit pynetbox users. What need does it address? | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: External dependencies | ||
description: > | ||
List any new dependencies on external libraries or services that this new feature would | ||
introduce. For example, does the proposal require the installation of a new Python package? | ||
(Not all new features introduce new dependencies.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: 🏡 Housekeeping | ||
description: A change pertaining to the codebase itself (developers only) | ||
labels: ["type: housekeeping"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
**NOTE:** This template is for use by maintainers only. Please do not submit | ||
an issue using this template unless you have been specifically asked to do so. | ||
- type: textarea | ||
attributes: | ||
label: Proposed Changes | ||
description: > | ||
Describe in detail the new feature or behavior you'd like to propose. | ||
Include any specific changes to work flows, data models, or the user interface. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Justification | ||
description: Please provide justification for the proposed change(s). | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!-- | ||
Thank you for your interest in contributing to pynetbox! Please note that | ||
our contribution policy requires that a feature request or bug report be | ||
approved and assigned prior to opening a pull request. This helps avoid | ||
waste time and effort on a proposed change that we might not be able to | ||
accept. | ||
IF YOUR PULL REQUEST DOES NOT REFERENCE AN ISSUE WHICH HAS BEEN ASSIGNED | ||
TO YOU, IT WILL BE CLOSED AUTOMATICALLY. | ||
Please specify your assigned issue number on the line below. | ||
--> | ||
### Fixes: #1234 | ||
|
||
<!-- | ||
Please include a summary of the proposed changes below. | ||
--> |