-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add issue templates and modified docs (#20)
* update docs * add templates for github issues * add mattersim logo * update issue templates * update readme * update readme * update readme * fix typo * update readme * Update README.md * Update index.rst --------- Co-authored-by: Han Yang <hanyang@microsoft.com>
- Loading branch information
1 parent
efc0020
commit a6edc20
Showing
8 changed files
with
201 additions
and
32 deletions.
There are no files selected for viewing
This file contains 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,91 @@ | ||
name: Bug Report | ||
description: Report a bug or unexpected behavior in MatterSim | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to report a bug! Please provide detailed information. | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we reach you if we need more information? | ||
placeholder: email@example.com | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Bug Description | ||
description: Provide a clear and concise description of the bug | ||
placeholder: Describe what happened | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: mattersim-version | ||
attributes: | ||
label: MatterSim Version | ||
description: What version of MatterSim are you using? | ||
placeholder: e.g., v1.0.0 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: python-version | ||
attributes: | ||
label: Python Version | ||
description: What Python version are you using? | ||
placeholder: e.g., 3.9.7 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction Steps | ||
description: Detailed steps to reproduce the bug | ||
placeholder: | | ||
1. Install MatterSim with... | ||
2. Run code with... | ||
3. Observe the error | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: What did you expect to happen? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: actual-behavior | ||
attributes: | ||
label: Actual Behavior | ||
description: What actually happened? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: error-logs | ||
attributes: | ||
label: Error Logs | ||
description: Paste any error messages or full traceback | ||
render: python | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our Code of Conduct | ||
options: | ||
- label: I agree to follow the project's Code of Conduct | ||
required: true |
This file contains 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: Feature Request | ||
description: Suggest a new feature or improvement for MatterSim | ||
title: "[Feat]: " | ||
labels: ["feature-request"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
We're excited to hear your feature ideas! Please provide detailed information. | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we reach you if we need more information? | ||
placeholder: email@example.com | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Feature Description | ||
description: Provide a clear and detailed description of the proposed feature | ||
placeholder: Describe the feature you'd like to see | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: motivation | ||
attributes: | ||
label: Motivation | ||
description: Why would this feature be useful? What problem does it solve? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: proposed-solution | ||
attributes: | ||
label: Proposed Solution | ||
description: Describe how you envision this feature being implemented | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: contribution | ||
attributes: | ||
label: Contribution Interest | ||
description: Would you like to contribute to this feature? | ||
options: | ||
- label: I'm interested in potentially implementing this feature | ||
- label: I can provide guidance, but cannot implement | ||
- label: I'm just suggesting the feature for the community | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our Code of Conduct | ||
options: | ||
- label: I agree to follow the project's Code of Conduct | ||
required: true |
This file contains 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 @@ | ||
blank_issues_enabled: false |
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
This file contains 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