Skip to content

Commit

Permalink
Issue templates for jupyter-matlab-proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
diningPhilosopher64 authored and Prabhakar Kumar committed Aug 5, 2024
1 parent a873534 commit 94798c5
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 1 deletion.
72 changes: 72 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Copyright 2024 The MathWorks, Inc.

name: "🐞 Bug Report"
title: "[Enter short description of bug.]"
description: "Report a bug."
labels: [bug, needs-triage]
body:
- type: markdown
attributes:
value: |
Before reporting a bug, see [Issues](https://github.com/mathworks/jupyter-matlab-proxy/issues) to check if an issue already exists for the bug you encountered. To request a feature or report a vulnerability, return to [Create an Issue](https://github.com/mathworks/jupyter-matlab-proxy/issues/new/choose).
- type: markdown
attributes:
value: |
## Provide details about the bug:
* What is the problem?
* What behavior were you expecting?
* What happened instead?
* Include full errors, uncaught exceptions, stack traces, and relevant logs.
* Provide a sequence of steps to reproduce the issue.
* Suggest a fix, if possible.
* Any additional information that might be relevant.
- type: textarea
id: bug-summary
attributes:
label: Summary

- type: dropdown
id: browsers
attributes:
label: Browser(s) used
multiple: true
options:
- Chrome
- Firefox
- Safari
- Microsoft Edge

- type: dropdown
id: Feature-issue
attributes:
label: Issue found in
multiple: true
options:
- MATLAB Kernel
- MATLAB Desktop
- Syntax Highlighting, Auto Indentation, Tab Completion
- MAGIC Commands
- Others

- type: markdown
attributes:
value: |
## Run the `troubleshooting.py` script and paste the output below.
```bash
$ python ./troubleshooting/troubleshooting.py
```
If you are collecting logs using the MWI_LOG_FILE environment variable, we recommend you provide the variable when executing the troubleshooting script:
```bash
$ MWI_LOG_FILE="/tmp/log.file" python ./troubleshooting/troubleshooting.py
```
For more information about the `MWI_LOG_FILE` environment variable, see [Advanced-Usage.md](https://github.com/mathworks/jupyter-matlab-proxy/blob/main/Advanced-Usage.md)
For more information about the troubleshooting script, see [Troubleshooting](https://github.com/mathworks/jupyter-matlab-proxy/tree/main/troubleshooting)
- type: textarea
id: troubleshooting-script-output
attributes:
label: Script output
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copyright 2024 The MathWorks, Inc.

blank_issues_enabled: true
contact_links:
- name: Report a Security Vulnerability
url: https://github.com/mathworks/jupyter-matlab-proxy/security/policy
about: Follow these steps.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Copyright 2024 The MathWorks, Inc.

name: 🚀 Feature Request
description: Suggest a feature for this project.
title: "(short issue description)"
labels: [feature-request, needs-triage]
body:
- type: markdown
attributes:
value: |
To report a bug or security vulnerability, return to [Create an Issue](https://github.com/mathworks/jupyter-matlab-proxy/issues/new/choose).
- type: markdown
attributes:
value: |
## Provide details of the feature you are proposing:
* A brief description
* What use case or challenge would this help you overcome? For example: “Currently, it’s too time-consuming/difficult to do…”
* Suggestions for implementing the request: provide a prototype, sketch, reference etc.
* Any additional information: details, stack traces, related issues, links for context, etc.
- type: textarea
id: description
attributes:
label: Details of the feature

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# MATLAB Integration _for Jupyter_

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/mathworks/jupyter-matlab-proxy/test-jupyter-matlab-proxy.yml?branch=main&logo=github)](https://github.com/mathworks/jupyter-matlab-proxy/actions) [![PyPI badge](https://img.shields.io/pypi/v/jupyter-matlab-proxy.svg?logo=pypi)](https://pypi.python.org/pypi/jupyter-matlab-proxy) [![codecov](https://codecov.io/gh/mathworks/jupyter-matlab-proxy/branch/main/graph/badge.svg?token=ZW3SESKCSS)](https://codecov.io/gh/mathworks/jupyter-matlab-proxy)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/mathworks/jupyter-matlab-proxy/run-tests.yml?branch=main&logo=github)](https://github.com/mathworks/jupyter-matlab-proxy/actions) [![PyPI badge](https://img.shields.io/pypi/v/jupyter-matlab-proxy.svg?logo=pypi)](https://pypi.python.org/pypi/jupyter-matlab-proxy) [![codecov](https://codecov.io/gh/mathworks/jupyter-matlab-proxy/branch/main/graph/badge.svg?token=ZW3SESKCSS)](https://codecov.io/gh/mathworks/jupyter-matlab-proxy) [![Downloads](https://static.pepy.tech/personalized-badge/jupyter-matlab-proxy?period=month&units=international_system&left_color=grey&right_color=blue&left_text=PyPI%20downloads/month)](https://pepy.tech/project/jupyter-matlab-proxy)



Run MATLAB® code in Jupyter® environments such as Jupyter notebooks, JupyterLab, and JupyterHub.
Expand Down

0 comments on commit 94798c5

Please sign in to comment.