Skip to content

feat: enable Github Issue Forms #5479

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 18 commits into from
Jan 18, 2022
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
blank_issues_enabled: false
contact_links:
- name: 🎧 p5.sound Issues
url: https://github.com/processing/p5.js-sound/issues
about: Report issues with p5.sound here.
- name: 🌐 Website Issues
url: https://github.com/processing/p5.js-website/issues
about: Report issues with the p5.js website here.
- name: 🖥️ Web Editor Issues
url: https://github.com/processing/p5.js-web-editor/issues
about: Report issues with the p5.js web editor here.
- name: 💬 Forum
url: https://discourse.processing.org/c/p5js
about: Have other questions about using p5.js? Ask them here!

39 changes: 0 additions & 39 deletions .github/ISSUE_TEMPLATE/existing-feature-enhancement.md

This file was deleted.

38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/existing-feature-enhancement.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: 💡 Existing Feature Enhancement
description: This template is for suggesting an improvement for an existing feature.
labels: [enhancement]
body:
- type: textarea
attributes:
label: Increasing Access
description: How would this new feature help [increase access](https://github.com/processing/p5.js/blob/main/contributor_docs/access.md) to p5.js?
validations:
required: true
- type: checkboxes
id: sub-area
attributes:
label: Most appropriate sub-area of p5.js?
description: You may select more than one.
options:
- label: Accessibility (Web Accessibility)
- label: Build tools and processes
- label: Color
- label: Core/Environment/Rendering
- label: Data
- label: DOM
- label: Events
- label: Friendly error system
- label: Image
- label: IO (Input/Output)
- label: Localization
- label: Math
- label: Unit Testing
- label: Typography
- label: Utilities
- label: WebGL
- label: Other (specify if possible)
- type: textarea
attributes:
label: Feature enhancement details
validations:
required: true
45 changes: 0 additions & 45 deletions .github/ISSUE_TEMPLATE/feature-request.md

This file was deleted.

38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: 🌱 New Feature Request
description: This template is for requesting a new feature be added.
labels: [feature request]
body:
- type: textarea
attributes:
label: Increasing Access
description: How would this new feature help [increase access](https://github.com/processing/p5.js/blob/main/contributor_docs/access.md) to p5.js?
validations:
required: true
- type: checkboxes
id: sub-area
attributes:
label: Most appropriate sub-area of p5.js?
description: You may select more than one.
options:
- label: Accessibility (Web Accessibility)
- label: Build tools and processes
- label: Color
- label: Core/Environment/Rendering
- label: Data
- label: DOM
- label: Events
- label: Friendly error system
- label: Image
- label: IO (Input/Output)
- label: Localization
- label: Math
- label: Unit Testing
- label: Typography
- label: Utilities
- label: WebGL
- label: Other (specify if possible)
- type: textarea
attributes:
label: Feature request details
validations:
required: true
42 changes: 0 additions & 42 deletions .github/ISSUE_TEMPLATE/found-a-bug.md

This file was deleted.

75 changes: 75 additions & 0 deletions .github/ISSUE_TEMPLATE/found-a-bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: 🐛 Found a Bug
description: This template is for reporting bugs (broken or incorrect behaviour). If you have questions about your own code, please visit our forum discourse.processing.org instead.
labels: [bug]
body:
- type: checkboxes
id: sub-area
attributes:
label: Most appropriate sub-area of p5.js?
description: You may select more than one.
options:
- label: Accessibility (Web Accessibility)
- label: Build tools and processes
- label: Color
- label: Core/Environment/Rendering
- label: Data
- label: DOM
- label: Events
- label: Friendly error system
- label: Image
- label: IO (Input/Output)
- label: Localization
- label: Math
- label: Unit Testing
- label: Typography
- label: Utilities
- label: WebGL
- label: Other (specify if possible)
- type: input
attributes:
label: p5.js version
description: You can find this in the first line of the p5.js file.
validations:
required: false
- type: input
attributes:
label: Web browser and version
description: In the address bar, on Chrome enter "chrome://version", on Firefox enter "about:support". On Safari, use "About Safari".
validations:
required: false
- type: input
attributes:
label: Operating System
description: "Ex: Windows/MacOSX/Linux/Android/iOS along with version"
validations:
required: false
- type: textarea
attributes:
label: Steps to reproduce this
description: Include a simple code snippet that demonstrates the problem, along with any console errors produced. If this isn't possible, then simply describe the issue as best you can!
value: "### Steps:

1.

2.

3.

### Snippet:

```js

function setup() {


}


function draw() {


}

```"
validations:
required: true