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: added bug report issue template #773

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Changes from all 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
69 changes: 69 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Bug report
description: Report a bug with the twilio-csharp helper library.
title: "[BUG] Describe the issue briefly"
labels: "type: bug"
body:
- type: markdown
attributes:
value: |
Thank you for reporting a bug in the twilio-csharp helper library. Please provide the details below to help us investigate and resolve the issue.

- type: textarea
attributes:
label: Describe the bug
description: Provide a clear and concise description of the issue.
placeholder: A clear and concise description of the bug.
validations:
required: true

- type: textarea
attributes:
label: Code snippet
description: Provide the code snippet that reproduces the issue.
placeholder: "```\n// Code snippet here\n```"
validations:
required: true

- type: textarea
attributes:
label: Actual behavior
description: Describe what actually happened.
placeholder: A description of the actual behavior.
validations:
required: true

- type: textarea
attributes:
label: Expected behavior
description: Describe what you expected to happen.
placeholder: A description of the expected outcome.
validations:
required: true

- type: input
attributes:
label: twilio-csharp version
description: Specify the version of the twilio-csharp helper library you are using.
placeholder: e.g., 7.8.0
validations:
required: true

- type: input
attributes:
label: Framework version
description: Specify the target framework version you are using.
placeholder: e.g., net6.0, netstandard2.1, net35, net462
validations:
required: true

- type: textarea
attributes:
label: Logs or error messages
description: Provide relevant logs or error messages (if any).
placeholder: "Error: Something went wrong..."

- type: textarea
attributes:
label: Additional context
description: Add any other context about the problem here.
placeholder: Any additional
Loading