Skip to content

Commit

Permalink
Merge pull request #14 from shopware/next-33446/add-issue-template
Browse files Browse the repository at this point in the history
NEXT-33446 - add issue template for bug reports
  • Loading branch information
Haberkamp authored Feb 13, 2024
2 parents 0e6b2fb + a24ab1b commit 291a138
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
70 changes: 70 additions & 0 deletions .github/ISSUE_TEMPLATE/01-bug-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Bug report
description: Create a report to improve Meteor
body:
- type: input
id: version
attributes:
label: Meteor version
validations:
required: true

- type: input
id: reproduction-link
attributes:
label: Link to minimal reproduction
description: |
The easiest way to provide a reproduction is by creating a new project
in [StackBlitz](https://vite.new/vue). If this is not suitable, you can
always provide a GitHub repository.
The reproduction should be **minimal** - i.e. it should contain only the
bare minimum amount of code needed to show the bug.
Please do not just fill in a random link. The issue will be closed if no valid reproduction is provided.
placeholder: Reproduction Link
validations:
required: true

- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to reproduce
description: |
What do we need to do after opening your repro in order to make the bug happen?
Clear and concise reproduction instructions are important for us to be able to
triage your issue in a timely manner. Note that you can use
[Markdown](https://guides.github.com/features/mastering-markdown/)
to format lists and code.
placeholder: Steps to reproduce
validations:
required: true

- type: textarea
id: actual-behavior
attributes:
label: Actual behavior
placeholder: Actual behavior
validations:
required: true

- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
placeholder: Expected behavior
validations:
required: true

- type: textarea
id: system-info
attributes:
label: System Info
description: Output of `npx envinfo --system --binaries --browsers`
render: shell
placeholder: Operating system, Binaries, Browsers

- type: textarea
id: additional-comments
attributes:
label: Any additional comments?
description: e.g. some background/context of how you ran into this bug.
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## What?

## Why?

## How?

## Testing?

## Screenshots (optional)

## Anything Else?

0 comments on commit 291a138

Please sign in to comment.