Skip to content

Commit 205bc57

Browse files
committed
Add issue templates and stale
1 parent bc1cfed commit 205bc57

File tree

4 files changed

+204
-0
lines changed

4 files changed

+204
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Feature request 🧭
2+
description: Suggest an idea for this project.
3+
labels: "feature request"
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
# Welcome 👋
9+
10+
Thanks for taking the time to fill out this feature request module.
11+
Please fill out each section below. This info allows Stereolabs developers to correctly evaluate your request.
12+
13+
Useful Links:
14+
- Documentation: https://www.stereolabs.com/docs/
15+
- Stereolabs support: https://support.stereolabs.com/hc/en-us/
16+
- type: checkboxes
17+
attributes:
18+
label: Preliminary Checks
19+
description: Please make sure that you verify each checkbox and follow the instructions for them.
20+
options:
21+
- label: "This issue is not a duplicate. Before opening a new issue, please search existing issues."
22+
required: true
23+
- label: "This issue is not a question, bug report, or anything other than a feature request directly related to this project."
24+
required: true
25+
- type: textarea
26+
attributes:
27+
label: Proposal
28+
description: "What would you like to have as a new feature?"
29+
placeholder: "A clear and concise description of what you want to happen."
30+
validations:
31+
required: true
32+
- type: textarea
33+
attributes:
34+
label: Use-Case
35+
description: "How would this help you?"
36+
placeholder: "Tell us more what you'd like to achieve."
37+
validations:
38+
required: false
39+
- type: textarea
40+
id: anything-else
41+
attributes:
42+
label: Anything else?
43+
description: "Let us know if you have anything else to share"
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
name: Bug Report 🐛
2+
description: Something isn't working as expected? Report your bugs here.
3+
labels: "bug"
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
# Welcome 👋
9+
10+
Thanks for taking the time to fill out this bug report.
11+
Please fill out each section below. This info allows Stereolabs developers to diagnose (and fix!) your issue as quickly as possible. Otherwise we might need to close the issue without e.g. clear reproduction steps.
12+
13+
Bug reports also shoulnd't be used for generic questions, please use the [Stereolabs Community forum](https://community.stereolabs.com/) instead.
14+
15+
Useful Links:
16+
- Documentation: https://www.stereolabs.com/docs/
17+
- Stereolabs support: https://support.stereolabs.com/hc/en-us/
18+
- type: checkboxes
19+
attributes:
20+
label: Preliminary Checks
21+
description: Please make sure that you verify each checkbox and follow the instructions for them.
22+
options:
23+
- label: "This issue is not a duplicate. Before opening a new issue, please search existing issues."
24+
required: true
25+
- label: "This issue is not a question, feature request, or anything other than a bug report directly related to this project."
26+
required: true
27+
- type: textarea
28+
attributes:
29+
label: Description
30+
description: Describe the issue that you're seeing.
31+
placeholder: Be as precise as you can. Feel free to share screenshots, videos, or data. The more information you provide the easier will be to provide you with a fast solution.
32+
validations:
33+
required: true
34+
- type: textarea
35+
attributes:
36+
label: Steps to Reproduce
37+
description: Clear steps describing how to reproduce the issue.
38+
value: |
39+
1.
40+
2.
41+
3.
42+
...
43+
validations:
44+
required: true
45+
- type: textarea
46+
attributes:
47+
label: Expected Result
48+
description: Describe what you expected to happen.
49+
validations:
50+
required: true
51+
- type: textarea
52+
attributes:
53+
label: Actual Result
54+
description: Describe what actually happened.
55+
validations:
56+
required: true
57+
- type: dropdown
58+
attributes:
59+
label: ZED Camera model
60+
description: What model of ZED camera are you using?
61+
options:
62+
- "ZED"
63+
- "ZED Mini"
64+
- "ZED2"
65+
- "ZED2i"
66+
validations:
67+
required: true
68+
- type: textarea
69+
attributes:
70+
label: Environment
71+
render: shell
72+
description: Useful information about your system.
73+
placeholder: |
74+
OS: Operating System
75+
CPU: e.g. ARM
76+
GPU: Nvidia Jetson Xavier NX
77+
ZED SDK version: e.g. v3.5.3
78+
Other info: e.g. ROS Melodic
79+
validations:
80+
required: true
81+
- type: textarea
82+
attributes:
83+
label: Anything else?
84+
description: Please add any other information or comment that you think may be useful for solving the problem
85+
placeholder:
86+
validations:
87+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Online Documentation
4+
url: https://www.stereolabs.com/docs/
5+
about: Check out the Stereolabs documentation for answers to common questions.
6+
- name: Stereolabs Community
7+
url: https://community.stereolabs.com/
8+
about: Ask questions, request features & discuss with other users and developers.
9+
- name: Stereolabs Twitter
10+
url: https://twitter.com/Stereolabs3D
11+
about: The official Stereolabs Twitter account to ask questions, comment our products and share your projects with the ZED community.
12+

.github/stale.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4+
daysUntilStale: 28
5+
6+
# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
7+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
8+
daysUntilClose: 3
9+
10+
# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
11+
onlyLabels: []
12+
13+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
14+
exemptLabels:
15+
- pinned
16+
- feature_request
17+
18+
# Set to true to ignore issues in a project (defaults to false)
19+
exemptProjects: false
20+
21+
# Set to true to ignore issues in a milestone (defaults to false)
22+
exemptMilestones: false
23+
24+
# Set to true to ignore issues with an assignee (defaults to false)
25+
exemptAssignees: false
26+
27+
# Label to use when marking as stale
28+
staleLabel: closed_for_stale
29+
30+
# Comment to post when marking as stale. Set to `false` to disable
31+
markComment: >
32+
This issue has been automatically marked as stale because it has not had
33+
recent activity. It will be closed in 72h if no further activity occurs. Thank you
34+
for your contributions.
35+
36+
# Comment to post when removing the stale label.
37+
# unmarkComment: >
38+
# Your comment here.
39+
40+
# Comment to post when closing a stale Issue or Pull Request.
41+
closeComment: >
42+
This issue has been closed automatically because it has not had
43+
recent activity. Please feel free to re-open in case new info
44+
is available or further job is required.
45+
46+
# Limit the number of actions per hour, from 1-30. Default is 30
47+
limitPerRun: 100
48+
49+
# Limit to only `issues` or `pulls`
50+
only: issues
51+
52+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
53+
# pulls:
54+
# daysUntilStale: 30
55+
# markComment: >
56+
# This pull request has been automatically marked as stale because it has not had
57+
# recent activity. It will be closed if no further activity occurs. Thank you
58+
# for your contributions.
59+
60+
# issues:
61+
# exemptLabels:
62+
# - confirmed

0 commit comments

Comments
 (0)