-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d53c413
commit 0348817
Showing
1 changed file
with
69 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,69 @@ | ||
--- | ||
name: 🐛 Bug Report | ||
description: Report a bug in the latest release of NetBox Data Flows. | ||
labels: ["type: bug", "status: needs triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
**NOTE:** This form is only for reporting _reproducible bugs_ in the latest version | ||
of NetBox Data Flows on a recent version of NetBox. | ||
If you're having trouble with installation, want to discuss something or just looking for | ||
assistance with using the plugin, please visit our | ||
[discussion forum](https://github.com/Alef-Burzmali/netbox-data-flows/discussions) instead. | ||
Please DO NOT create a public bug report for SECURITY ISSUES. Use the security advisories | ||
instead: | ||
https://github.com/Alef-Burzmali/netbox-data-flows/security/advisories/new | ||
- type: input | ||
attributes: | ||
label: NetBox version | ||
description: What version of NetBox are you currently running? | ||
placeholder: v4.1.6 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: NetBox Data Flows version | ||
description: > | ||
What version of NetBox Data Flows are you currently running? | ||
Note: only the latest version is supported. | ||
placeholder: v1.1.0 | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: volonteering | ||
attributes: | ||
label: Volonteering | ||
options: | ||
- label: I am willing to propose a pull request for that bug report. | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce | ||
description: > | ||
Describe in detail the exact steps that someone else can take to | ||
reproduce this bug using the current stable release of NetBox with the latest | ||
version of the NetBox Data Flow plugin. Begin with the creation of any necessary | ||
database objects and call out every operation being performed explicitly. | ||
If reporting a bug in the REST API, be sure to reconstruct the raw HTTP request(s) | ||
being made: Don't rely on a client library such as pynetbox. | ||
placeholder: | | ||
1. Click on "create data flow" | ||
2. Set foo to 12 and bar to G | ||
3. Click the "create" button | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: What did you expect to happen? | ||
placeholder: A new data flow should have been created with the specified attributes | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Observed Behavior | ||
description: What happened instead? | ||
placeholder: A TypeError exception was raised | ||
validations: | ||
required: true |