Skip to content

Commit 49ca484

Browse files
withinfocusvvolkgang
authored andcommitted
Repo tuneup (#1400)
1 parent 8e69719 commit 49ca484

File tree

12 files changed

+876
-1113
lines changed

12 files changed

+876
-1113
lines changed

.github/ISSUE_TEMPLATE/bug.yml

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Android Bug Report
2+
description: File a bug report
3+
labels: [ bug ]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
10+
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.
11+
- type: textarea
12+
id: reproduce
13+
attributes:
14+
label: Steps To Reproduce
15+
description: How can we reproduce the behavior.
16+
value: |
17+
1. Go to '...'
18+
2. Click on '...'
19+
3. Scroll down to '...'
20+
4. Click on '...'
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: expected
25+
attributes:
26+
label: Expected Result
27+
description: A clear and concise description of what you expected to happen.
28+
validations:
29+
required: true
30+
- type: textarea
31+
id: actual
32+
attributes:
33+
label: Actual Result
34+
description: A clear and concise description of what is happening.
35+
validations:
36+
required: true
37+
- type: textarea
38+
id: screenshots
39+
attributes:
40+
label: Screenshots or Videos
41+
description: If applicable, add screenshots and/or a short video to help explain your problem.
42+
- type: textarea
43+
id: additional-context
44+
attributes:
45+
label: Additional Context
46+
description: Add any other context about the problem here.
47+
- type: input
48+
id: version
49+
attributes:
50+
label: Build Version
51+
description: What version of our software are you running?
52+
validations:
53+
required: true
54+
- type: textarea
55+
id: environment-details
56+
attributes:
57+
label: Environment Details
58+
placeholder: |
59+
- Device: [e.g. Pixel Tablet, Samsung Galaxy S24 ]
60+
- OS Version: [e.g. API 32, Tiramisu ]
61+
- type: checkboxes
62+
id: issue-tracking-info
63+
attributes:
64+
label: Issue Tracking Info
65+
description: |
66+
Issue tracking information
67+
options:
68+
- 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.

.github/PULL_REQUEST_TEMPLATE.md

-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010

1111
<!-- Required for any UI changes; delete if not applicable. Use fixed width images for better display. -->
1212

13-
| Before | After |
14-
| --- | --- |
15-
| | |
16-
1713
## ⏰ Reminders before review
1814

1915
- Contributor guidelines followed

.github/renovate.json

+9-34
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,17 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"github>bitwarden/renovate-config"
5-
],
6-
"enabledManagers": [
7-
"github-actions",
8-
"gradle",
9-
"bundler"
10-
],
11-
"commitMessagePrefix": "[deps]:",
12-
"commitMessageTopic": "{{depName}}",
3+
"extends": ["github>bitwarden/renovate-config"],
4+
"enabledManagers": ["github-actions", "gradle", "bundler"],
135
"packageRules": [
146
{
157
"groupName": "gh minor",
16-
"matchManagers": [
17-
"github-actions"
18-
],
19-
"matchUpdateTypes": [
20-
"minor",
21-
"patch"
22-
]
8+
"matchManagers": ["github-actions"],
9+
"matchUpdateTypes": ["minor", "patch"]
2310
},
2411
{
2512
"groupName": "gradle minor",
26-
"matchUpdateTypes": [
27-
"minor",
28-
"patch"
29-
],
30-
"matchManagers": [
31-
"gradle"
32-
]
13+
"matchUpdateTypes": ["minor", "patch"],
14+
"matchManagers": ["gradle"]
3315
},
3416
{
3517
"groupName": "kotlin",
@@ -39,19 +21,12 @@
3921
"org.jetbrains.kotlin.*",
4022
"com.google.devtools.ksp"
4123
],
42-
"matchManagers": [
43-
"gradle"
44-
]
24+
"matchManagers": ["gradle"]
4525
},
4626
{
4727
"groupName": "bundler minor",
48-
"matchUpdateTypes": [
49-
"minor",
50-
"patch"
51-
],
52-
"matchManagers": [
53-
"bundler"
54-
]
28+
"matchUpdateTypes": ["minor", "patch"],
29+
"matchManagers": ["bundler"]
5530
}
5631
]
5732
}

0 commit comments

Comments
 (0)