Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: new bug template #591

Merged
merged 15 commits into from
Jul 4, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 0 additions & 60 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

77 changes: 77 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Bug report
description: Create a report to help us improve
title: 'bug: something is wrong :('
Marcellofabrizio marked this conversation as resolved.
Show resolved Hide resolved
labels:
- bug
assignees: arthurfiorette

body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: input
Marcellofabrizio marked this conversation as resolved.
Show resolved Hide resolved
id: contact
attributes:
label: Contact Details
description: How can we get in touch with you if we need more info?
placeholder: ex. [email protected]
validations:
required: false
- 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: input
id: version
attributes:
label: Axios Cache Interceptor Version
Marcellofabrizio marked this conversation as resolved.
Show resolved Hide resolved
description: What version of our software are you running?
placeholder: 0.9.3
validations:
required: true
- type: input
id: node_version
attributes:
label: Node Version
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
label: Node Version
label: Node / Browser version

description: What version of Node.js are you running?
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: What version of Node.js are you running?
description: What version of Node.js/Browser are you running?

placeholder: 16.9.1
Marcellofabrizio marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true
- type: input
id: axios_version
attributes:
label: Axios Version
description: What version of Axios are you running?
placeholder: 0.26.1
validations:
required: true
- type: input
id: storage
attributes:
label: What storage is being used
description: What storage is being used?
placeholder: Web Storage
validations:
required: true
- type: dropdown
Marcellofabrizio marked this conversation as resolved.
Show resolved Hide resolved
id: browsers
attributes:
label: What browsers are you seeing the problem on?
multiple: true
options:
- Firefox
- Chrome
- Safari
- Microsoft Edge
- 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
Marcellofabrizio marked this conversation as resolved.
Show resolved Hide resolved