-
-
Notifications
You must be signed in to change notification settings - Fork 78
feat: add community health files #122
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| name: 🐞 Bug report | ||
| description: Report an issue | ||
| labels: [pending triage] | ||
| 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. 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: reproduction | ||
| attributes: | ||
| label: Reproduction | ||
| description: A [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) is **required**, otherwise the issue might be closed without further notice. [**Why & How?**](https://antfu.me/posts/why-reproductions-are-required) | ||
| placeholder: Reproduction | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: system-info | ||
| attributes: | ||
| label: System Info | ||
| description: Output of `npx envinfo --system --binaries --browsers` | ||
| render: Shell | ||
| placeholder: System, Binaries, Browsers | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: package-manager | ||
| attributes: | ||
| label: Used Package Manager | ||
| description: Select the used package manager | ||
| options: | ||
| - npm | ||
| - yarn | ||
| - pnpm | ||
| - bun | ||
| - n/a | ||
| validations: | ||
| required: true | ||
| - type: checkboxes | ||
| id: checkboxes | ||
| attributes: | ||
| label: Validations | ||
| description: Before submitting the issue, please make sure you do the following | ||
| options: | ||
| - label: Follow our [Code of Conduct](https://github.com/antfu/.github/blob/main/CODE_OF_CONDUCT.md) | ||
| required: true | ||
| - label: Read the [Contributing Guide](https://github.com/antfu/contribute). | ||
| required: true | ||
| - label: Check that there isn't already an issue that reports the same bug to avoid creating a duplicate. | ||
| required: true | ||
| - label: Check that this is a concrete bug. For Q&A, please open a GitHub Discussion instead. | ||
| required: true | ||
| - label: The provided reproduction is a [minimal reproducible](https://stackoverflow.com/help/minimal-reproducible-example) of the bug. | ||
| required: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| contact_links: | ||
| - name: 🙌 Contribution Guide | ||
| url: https://github.com/antfu/contribute | ||
| about: Please read through before making contributions. | ||
| - name: ⁉️ Why and How to make a reproduction? | ||
| url: https://antfu.me/posts/why-reproductions-are-required | ||
| about: Reproduction is very important for maintainer to help on your issues! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| name: 🚀 New feature proposal | ||
| description: Propose a new feature | ||
| labels: [enhancement] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thanks for your interest in the project and taking the time to fill out this feature report! | ||
| - type: textarea | ||
| id: feature-description | ||
| attributes: | ||
| label: Clear and concise description of the problem | ||
| description: 'As a developer using Unplugin I want [goal / wish] so that [benefit]. If you intend to submit a PR for this issue, tell us in the description. Thanks!' | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: suggested-solution | ||
| attributes: | ||
| label: Suggested solution | ||
| description: 'In module [xy] we could provide following implementation...' | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: alternative | ||
| attributes: | ||
| label: Alternative | ||
| description: Clear and concise description of any alternative solutions or features you've considered. | ||
| - type: textarea | ||
| id: additional-context | ||
| attributes: | ||
| label: Additional context | ||
| description: Any other context or screenshots about the feature request here. | ||
| - type: checkboxes | ||
| id: checkboxes | ||
| attributes: | ||
| label: Validations | ||
| description: Before submitting the issue, please make sure you do the following | ||
| options: | ||
| - label: Follow our [Code of Conduct](https://github.com/unplugin/.github/blob/main/CODE_OF_CONDUCT.md) | ||
| required: true | ||
| - label: Read the [Contributing Guide](https://github.com/antfu/contribute). | ||
| required: true | ||
| - label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate. | ||
| required: true | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| name: 👀 Typo / Grammar fix | ||
| description: You can just go ahead and send a PR! Thank you! | ||
| labels: [] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| ## PR Welcome! | ||
|
|
||
| If the typo / grammar issue is trivial and straightforward, you can help by **directly sending a quick pull request**! | ||
| If you spot multiple of them, we suggest combining them into a single PR. Thanks! | ||
| - type: textarea | ||
| id: context | ||
| attributes: | ||
| label: Additional context |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| <!-- DO NOT IGNORE THE TEMPLATE! | ||
|
|
||
| Thank you for contributing! | ||
|
|
||
| Before submitting the PR, please make sure you do the following: | ||
|
|
||
| - Read the [Contributing Guide](https://github.com/antfu/contribute). | ||
| - Check that there isn't already a PR that solves the problem the same way to avoid creating a duplicate. | ||
| - Provide a description in this PR that addresses **what** the PR is solving, or reference the issue that it solves (e.g. `fixes #123`). | ||
| - Ideally, include relevant tests that fail without this PR but pass with it. | ||
|
|
||
| --> | ||
|
|
||
| ### Description | ||
|
|
||
| <!-- Please insert your description here and provide especially info about the "what" this PR is solving --> | ||
|
|
||
| ### Linked Issues | ||
|
|
||
| ### Additional context | ||
|
|
||
| <!-- e.g. is there anything you'd like reviewers to focus on? --> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.