Skip to content

Commit 99655a0

Browse files
chore: add issue template and base config (#926)
* chore: add issue template and base config * chore: add additional details to application type and add additional directory service * chore: group LDAP services
1 parent 2883ff6 commit 99655a0

2 files changed

Lines changed: 121 additions & 0 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Feature Requests
4+
url: https://community.bitwarden.com/c/feature-requests/
5+
about: Request new features using the Community Forums. Please search existing feature requests before making a new one.
6+
- name: Bitwarden Community Forums
7+
url: https://community.bitwarden.com
8+
about: Please visit the community forums for general community discussion, support and the development roadmap.
9+
- name: Customer Support
10+
url: https://bitwarden.com/contact/
11+
about: Please contact our customer support for account issues and general customer support.
12+
- name: Security Issues
13+
url: https://hackerone.com/bitwarden
14+
about: We use HackerOne to manage security disclosures.

.github/ISSUE_TEMPLATE/issue.yml

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
name: Directory Connector Bug Report
2+
description: File a bug report
3+
title: "[DC] "
4+
labels: ["bug"]
5+
type: bug
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
12+
Please do not submit feature requests. The [Community Forums](https://community.bitwarden.com) has a section for submitting, voting for, and discussing product feature requests.
13+
- type: textarea
14+
id: reproduce
15+
attributes:
16+
label: Steps To Reproduce
17+
description: How can we reproduce the behavior.
18+
value: |
19+
1. Go to '...'
20+
2. Click on '....'
21+
3. Scroll down to '....'
22+
4. Click on '...'
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: expected
27+
attributes:
28+
label: Expected Result
29+
description: A clear and concise description of what you expected to happen.
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: actual
34+
attributes:
35+
label: Actual Result
36+
description: A clear and concise description of what is happening.
37+
validations:
38+
required: true
39+
- type: textarea
40+
id: screenshots
41+
attributes:
42+
label: Screenshots or Videos
43+
description: If applicable, add screenshots and/or a short video to help explain your problem.
44+
- type: textarea
45+
id: additional-context
46+
attributes:
47+
label: Additional Context
48+
description: Add any other context about the problem here.
49+
- type: checkboxes
50+
id: os
51+
attributes:
52+
label: Operating System
53+
description: What operating system are you seeing the problem on?
54+
options:
55+
- label: Windows
56+
- label: macOS
57+
- label: Linux
58+
- label: Other
59+
validations:
60+
required: true
61+
- type: input
62+
id: os-version
63+
attributes:
64+
label: Operating System Version
65+
description: What version of the operating system(s) are you seeing the problem on?
66+
- type: checkboxes
67+
id: directories
68+
attributes:
69+
label: Directory Service
70+
description: What directory service(s) are you seeing the problem on?
71+
options:
72+
- label: LDAP - Active Directory
73+
- label: Another LDAP implementation (please specify in "Additional Context" section)
74+
- label: Microsoft Entra ID
75+
- label: Google Workspace
76+
- label: Okta Universal Directory
77+
- label: OneLogin
78+
- label: Other
79+
validations:
80+
required: true
81+
- type: checkboxes
82+
id: application-type
83+
attributes:
84+
label: Application Type
85+
description: Which Directory Connector application are you seeing the problem on?
86+
options:
87+
- label: GUI (the desktop application)
88+
- label: CLI (the bwdc command line application)
89+
validations:
90+
required: true
91+
- type: input
92+
id: version
93+
attributes:
94+
label: Build Version
95+
description: What version of our software are you running?
96+
validations:
97+
required: true
98+
- type: checkboxes
99+
id: issue-tracking-info
100+
attributes:
101+
label: Issue Tracking Info
102+
description: |
103+
Make sure to acknowledge the following before submitting your report!
104+
options:
105+
- label: I understand that work is tracked outside of Github. A PR will be linked to this issue should one be opened to address it, but Bitwarden doesn't use fields like "assigned", "milestone", or "project" to track progress.
106+
validations:
107+
required: true

0 commit comments

Comments
 (0)