Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
shahmal1yev committed Nov 8, 2024
2 parents a34f609 + c2a206c commit a64e718
Show file tree
Hide file tree
Showing 2 changed files with 136 additions and 0 deletions.
76 changes: 76 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: 🐛 Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: bug-description
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is
placeholder: Tell us what happened...
validations:
required: true

- type: textarea
id: reproduction
attributes:
label: Steps to reproduce
description: Steps to reproduce the behavior
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected behavior
description: What did you expect to happen?
placeholder: Tell us what should have happened...
validations:
required: true

- type: dropdown
id: php-version
attributes:
label: PHP Version
description: What version of PHP are you running?
options:
- PHP 8.2
- PHP 8.1
- PHP 8.0
- PHP 7.4
- Other
validations:
required: true

- type: input
id: package-version
attributes:
label: Package Version
description: What version of our package are you using?
placeholder: e.g., 1.0.0
validations:
required: true

- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output
render: shell

- type: textarea
id: additional
attributes:
label: Additional context
description: Add any other context about the problem here
60 changes: 60 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: 💡 Feature Request
description: Suggest an idea for this project
title: "[Feature]: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to suggest a new feature!
- type: textarea
id: problem
attributes:
label: Is your feature request related to a problem?
description: A clear and concise description of what the problem is
placeholder: I'm always frustrated when [...]
validations:
required: true

- type: textarea
id: solution
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen
placeholder: Describe your ideal solution...
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered
placeholder: What other options have you thought about?

- type: dropdown
id: priority
attributes:
label: Priority
description: How important is this feature to you?
options:
- Low
- Medium
- High
- Critical
validations:
required: true

- type: textarea
id: implementation
attributes:
label: Implementation ideas
description: If you have any technical ideas about how this could be implemented, please share them here
placeholder: Technical implementation details...

- type: textarea
id: additional
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here

0 comments on commit a64e718

Please sign in to comment.