-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Add issue forms #264
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
Add issue forms #264
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
050682d
Added bug report and feature request issue forms
LtDan33 04601f0
Update bug-report.yml
LtDan33 a8471c9
Added misc issue type
LtDan33 0e64ce2
Merge branch '255_Add-issue-forms' of github.com:pyscript/pyscript in…
LtDan33 eb0161b
Add keypress event to todo example (#241)
alago1 20877d8
Changed variable names to snake_case for PEP8 formatting (#211)
barnwell 7717407
Add issue templates (#252)
antocuni eefffd6
Removed mardown files. Added link for questions
LtDan33 d4715d2
Updated browser dev console info
LtDan33 8a029fb
Merge branch 'main' into 255_Add-issue-forms
LtDan33 e945b14
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 8c3f7bd
Minor typo
LtDan33 46db217
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] ab2402f
Fix issue with labels that should be strings, ignore pretty-format of…
mattkram 2278ae5
Removed old md. Updated label
LtDan33 37244fd
add the needs-triage label to all new issues
antocuni 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,63 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
labels: ["type: bug", "needs-triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for helping PyScript! 🐍 | ||
|
||
Going through bugs and issues takes up a lot of time, so please be so kind and take a few minutes to fill out all the areas to the best of your ability. | ||
|
||
There will always be more issues than there is time to do them, and so we will need to selectively close issues that don't provide enough information, so we can focus our time on helping people like you who fill out the issue form completely. Thank you for your collaboration! | ||
|
||
There are also already a lot of open issues, so please take 2 minutes and search through existing ones to see if what you are experiencing already exists | ||
|
||
Thanks for helping PyScript be amazing. We are nothing without people like you helping build a better community 💐! | ||
- type: checkboxes | ||
id: checks | ||
attributes: | ||
label: Checklist | ||
description: Please confirm and check all the following options. | ||
options: | ||
- label: I added a descriptive title | ||
required: true | ||
- label: I searched for other issues and couldn't find a solution or duplication | ||
required: true | ||
- label: I already searched in Google and didn't find any good information or help | ||
required: true | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: And what should have happened instead? This really helps everyone review quicker and greatly increases the chance that someone can get around to solve your issue | ||
placeholder: Tell us what you see! | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? (if applicable) | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
- Other | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: list | ||
attributes: | ||
label: Console info | ||
description: | | ||
If there are errors in your browser console then its helpful to be able to troubleshoot. | ||
- Chrome , Firefox, and Edge: Right-click on the page and select *Inspect*. Alternatively you can press F12 on your keyboard. | ||
- Safari: Find instructions [here](https://support.apple.com/guide/safari/use-the-developer-tools-in-the-develop-menu-sfri20948/mac). | ||
render: shell | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional Context | ||
description: Add any additional context information or screenshots you think are useful. |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Question | ||
url: https://community.anaconda.cloud/c/tech-topics/pyscript | ||
about: For questions or discussions about pyscript |
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,67 @@ | ||
name: Feature Request | ||
description: Create a feature request to make PyScript even better | ||
labels: ["type: enhancement", "needs-triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Thanks for helping PyScript! 🐍 | ||
|
||
Going through feature requests and issues takes up a lot of time, so please be so kind and take a few minutes to fill out all the areas to the best of your ability. | ||
|
||
There will always be more great ideas than there is time to do them, and so we will need to selectively close issues that don't provide enough information, so everyone can focus our time on helping people like you who fill out the form completely. Thank you for your collaboration! | ||
|
||
There are also already a lot of open requests, so please take 2 minutes and search through existing ones to see if your idea already exists. If you find something close, please upvote that request and comment. | ||
|
||
Thanks for helping PyScript be amazing. We are nothing without people like you helping build a better community 💐! | ||
|
||
### Lets make sure you are in the right place. If you have an idea/request for: | ||
|
||
- #### A specific package/library (such as pandas or scikit learn): | ||
|
||
Search for that respective library on github repo or website. You will have much more success there. | ||
|
||
- #### A general Python question/feature request: | ||
|
||
Try out a forum post [here](https://discuss.python.org/c/users/7) | ||
|
||
- type: checkboxes | ||
id: checks | ||
attributes: | ||
label: Checklist | ||
description: Please confirm and check all the following options | ||
options: | ||
- label: I added a descriptive title | ||
required: true | ||
- label: I searched for other feature requests and couldn't find a duplicate (including also the ``type-feature`` tag) | ||
required: true | ||
- label: I confirmed that it's not related to another project are area (see the above section) | ||
required: true | ||
- type: textarea | ||
id: request-idea | ||
attributes: | ||
label: What is the idea? | ||
description: Describe what the feature is and the desired state | ||
placeholder: This feature would allow any user of PyScript to type in a simple command in the console and show all variables currently in use | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: why | ||
attributes: | ||
label: Why is this needed | ||
description: | | ||
Who would benefit from this and why would this add value to them? What problem does this solve? | ||
placeholder: This would benefit users who would like to see what is being used so they can learn and debug faster | ||
- type: textarea | ||
id: what | ||
attributes: | ||
label: What should happen? | ||
description: | | ||
What should be the user experience with the feature? Describe from a user perpective what they would do and see | ||
placeholder: A user would type in ``PyScript debug`` in the browser console and see a list of all variables created. | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional Context | ||
description: | | ||
Is there any other information that you think would be valuable for the team to know? |
This file was deleted.
Oops, something went wrong.
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,37 @@ | ||
name: Miscellaneous | ||
description: For issues that don't belong in other categories | ||
labels: ["type: misc", "needs-triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for helping PyScript! 🐍 | ||
|
||
This issue is for things that doesn't make sense to put into the other issue categories and we don't want it to get lost. | ||
|
||
Going through issues takes up a lot of time, so please be so kind and take a few minutes to fill out all the areas to the best of your ability. | ||
|
||
There will always be more issues than there is time to do them, and so we will need to selectively close issues that don't provide enough information, so we can focus our time on helping people like you who fill out the issue form completely. Thank you for your collaboration! | ||
|
||
There are also already a lot of open issues, so please take 2 minutes and search through existing ones to see if what you are experiencing already exists | ||
|
||
Thanks for helping PyScript be amazing. We are nothing without people like you helping build a better community 💐! | ||
- type: checkboxes | ||
id: checks | ||
attributes: | ||
label: Checklist | ||
description: Please confirm and check all the following options. | ||
options: | ||
- label: I added a descriptive title | ||
required: true | ||
- label: I searched for other issues and couldn't find a duplication | ||
required: true | ||
- label: I already searched in Google and didn't find any good information or help | ||
required: true | ||
- type: textarea | ||
id: what | ||
attributes: | ||
label: What is the issue/comment/problem? | ||
description: This is a miscellaneous issue so this could be just about anything. We simply ask that you provide as many details as you can to help spur discussion or the outcome you want. | ||
validations: | ||
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
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.