Skip to content

Commit 0977653

Browse files
chore: add issue template and base config
1 parent 29fc4ad commit 0977653

2 files changed

Lines changed: 120 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: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
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 or Active Directory
73+
- label: Microsoft Entra ID
74+
- label: Google Workspace
75+
- label: Okta Universal Directory
76+
- label: OneLogin
77+
- label: Other
78+
validations:
79+
required: true
80+
- type: checkboxes
81+
id: application-type
82+
attributes:
83+
label: Application Type
84+
description: Which Directory Connector application are you seeing the problem on?
85+
options:
86+
- label: GUI
87+
- label: CLI
88+
validations:
89+
required: true
90+
- type: input
91+
id: version
92+
attributes:
93+
label: Build Version
94+
description: What version of our software are you running?
95+
validations:
96+
required: true
97+
- type: checkboxes
98+
id: issue-tracking-info
99+
attributes:
100+
label: Issue Tracking Info
101+
description: |
102+
Make sure to acknowledge the following before submitting your report!
103+
options:
104+
- 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.
105+
validations:
106+
required: true

0 commit comments

Comments
 (0)