From 1ee7aa54c8733cb5fbebf0ba8cc25a045f4eee0d Mon Sep 17 00:00:00 2001 From: Anwai Archit Date: Sun, 9 Mar 2025 23:16:53 +0100 Subject: [PATCH 1/5] Update issue templates --- .github/ISSUE_TEMPLATE/bug-report.md | 31 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 20 ++++++++++++ .../image-analysis-discussion.md | 23 ++++++++++++++ .github/ISSUE_TEMPLATE/installation-issue.md | 27 ++++++++++++++++ 4 files changed, 101 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md create mode 100644 .github/ISSUE_TEMPLATE/image-analysis-discussion.md create mode 100644 .github/ISSUE_TEMPLATE/installation-issue.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 000000000..c7ca23902 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,31 @@ +--- +name: Bug Report +about: Create a report to help us improve +title: "[BUG]" +labels: '' +assignees: '' + +--- + +**Describe the bug** :bug: +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error. + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**System Information (please complete the following information):** +- OS: [e.g. Windows, Linux, Mac OS] +- Version [e.g. Ubuntu 22.04] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 000000000..026c52b8e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,20 @@ +--- +name: Feature Request +about: Suggest an idea / enhancement for this project +title: "[FEATURE]" +labels: '' +assignees: '' + +--- + +**Is your feature request :rocket: related to a problem encountered? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/image-analysis-discussion.md b/.github/ISSUE_TEMPLATE/image-analysis-discussion.md new file mode 100644 index 000000000..78fccb1c8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/image-analysis-discussion.md @@ -0,0 +1,23 @@ +--- +name: Image Analysis Discussion +about: Discuss questions, brainstorm ideas for feedback on your image analysis task. +title: "[DISCUSSION]" +labels: '' +assignees: '' + +--- + +**Motivate your image analysis topic of interest** :microscope: +A clear and concise description of your images and expected task, and what do you expect from `micro-sam`. + +**Walk us through your ideal world image analysis workflow** +Steps to reproduce the behavior: +1. Get images from '...' +2. Use `micro-sam` to segment '....' +3. And get my desired outcome. + +**Screenshots** +If applicable, add screenshots to help explain your desired outcome. + +**Additional context** +Add any other context about the discussion here. diff --git a/.github/ISSUE_TEMPLATE/installation-issue.md b/.github/ISSUE_TEMPLATE/installation-issue.md new file mode 100644 index 000000000..7631c7ad6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/installation-issue.md @@ -0,0 +1,27 @@ +--- +name: Installation Issue +about: Problems installation micro-sam +title: "[INSTALLATION]" +labels: '' +assignees: '' + +--- + +**Describe the installation issue** :computer: +A clear and concise description of how did you do the installation. + +**To Reproduce** +Steps to reproduce the behavior: +1. Install using '...' +2. Start this using '....' +3. See error. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**System Information (please complete the following information):** + - OS: [e.g. Windows, Linux, Mac OS] + - Version [e.g. Ubuntu 22.04] + +**Additional context** +Add any other context about the problem here. From 293c2839e9bde1d1f600939d66e7328c18ecccaa Mon Sep 17 00:00:00 2001 From: Anwai Archit Date: Sun, 9 Mar 2025 23:22:12 +0100 Subject: [PATCH 2/5] Update bug-report.md --- .github/ISSUE_TEMPLATE/bug-report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index c7ca23902..d62a1c250 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -2,7 +2,7 @@ name: Bug Report about: Create a report to help us improve title: "[BUG]" -labels: '' +labels: 'bug' assignees: '' --- From 43d7075d6e3112d1da6866310290cb7a0b15bea2 Mon Sep 17 00:00:00 2001 From: Anwai Archit Date: Sun, 9 Mar 2025 23:22:34 +0100 Subject: [PATCH 3/5] Update feature-request.md --- .github/ISSUE_TEMPLATE/feature-request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index 026c52b8e..3df7d19cb 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -2,7 +2,7 @@ name: Feature Request about: Suggest an idea / enhancement for this project title: "[FEATURE]" -labels: '' +labels: 'enhancement' assignees: '' --- From dc5f320103f0c989efaa4453bb294e0de4985042 Mon Sep 17 00:00:00 2001 From: Anwai Archit Date: Sun, 9 Mar 2025 23:24:47 +0100 Subject: [PATCH 4/5] Update installation-issue.md --- .github/ISSUE_TEMPLATE/installation-issue.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/installation-issue.md b/.github/ISSUE_TEMPLATE/installation-issue.md index 7631c7ad6..0037ece7d 100644 --- a/.github/ISSUE_TEMPLATE/installation-issue.md +++ b/.github/ISSUE_TEMPLATE/installation-issue.md @@ -2,7 +2,7 @@ name: Installation Issue about: Problems installation micro-sam title: "[INSTALLATION]" -labels: '' +labels: 'install' assignees: '' --- @@ -16,6 +16,9 @@ Steps to reproduce the behavior: 2. Start this using '....' 3. See error. +**Current Environment Information** +We recommend providing us with `conda list` outputs of your `micro-sam` environment for us to understand the details on all relevant packages. + **Screenshots** If applicable, add screenshots to help explain your problem. From e796d95cddbfb830cb632e0051e1ca56446bff52 Mon Sep 17 00:00:00 2001 From: Anwai Archit Date: Sun, 9 Mar 2025 23:27:07 +0100 Subject: [PATCH 5/5] Update image-analysis-discussion.md --- .github/ISSUE_TEMPLATE/image-analysis-discussion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/image-analysis-discussion.md b/.github/ISSUE_TEMPLATE/image-analysis-discussion.md index 78fccb1c8..0e2901580 100644 --- a/.github/ISSUE_TEMPLATE/image-analysis-discussion.md +++ b/.github/ISSUE_TEMPLATE/image-analysis-discussion.md @@ -2,7 +2,7 @@ name: Image Analysis Discussion about: Discuss questions, brainstorm ideas for feedback on your image analysis task. title: "[DISCUSSION]" -labels: '' +labels: 'discussion' assignees: '' ---