Skip to content

Commit

Permalink
docs: create default issue template (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrmaz authored Feb 8, 2025
1 parent 665233d commit 7ccebc8
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Bug Report
description: Report an issue with Vite plugin for Module Federation
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: what-happened
attributes:
label: Describe the bug
description: |
A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
placeholder: Bug description
validations:
required: true
- type: input
id: version
attributes:
label: Version
description: What version of Vite are you running?
placeholder: ex. v6.1.0
validations:
required: true
- type: input
id: reproduction
attributes:
label: Reproduction
description: |
Please provide a repo that can reproduce the problem you ran into. A [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) is required.
placeholder: Reproduction
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output
render: shell
- type: checkboxes
id: checkboxes
attributes:
label: Validations
description: Before submitting the issue, please make sure you do the following
options:
- label: Read the [docs](https://github.com/module-federation/vite).
required: true
- label: Read the [common issues list](https://github.com/module-federation/vite/issues).
required: true
- label: Check that there isn't [already an issue](https://github.com/module-federation/vite/issues) that reports the same bug to avoid creating a duplicate.
required: true
- label: The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug.
required: true
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Questions & Discussions
url: https://discord.gg/VYtDGFmgVN
about: Please ask and answer questions about Module Federation here
- name: Bug Report
url: https://github.com/module-federation/vite/issues/new?template=bug_report.yml
about: Report bugs or issues you encounter here

0 comments on commit 7ccebc8

Please sign in to comment.