Skip to content

Commit 1b231e5

Browse files
authored
ci/cd: add bug report template (#5)
1 parent 2d567f4 commit 1b231e5

File tree

2 files changed

+73
-4
lines changed

2 files changed

+73
-4
lines changed
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
body:
2+
- id: prechecks
3+
attributes:
4+
description: |
5+
Before opening an issue, please confirm that your question or issue hasn’t already been addressed.
6+
label: I have taken steps to troubleshoot my issue first
7+
options:
8+
- label: "I'm using the latest version of `bunkr-uploader`"
9+
required: true
10+
- label: "I’ve checked existing issues to ensure this hasn’t been reported already."
11+
required: true
12+
type: checkboxes
13+
- id: bug-description
14+
attributes:
15+
label: Describe the bug
16+
placeholder: |
17+
A clear and concise description of what the bug is.
18+
1. Describe the bug accurately.
19+
2. Add screenshots to help explain your problem (if applicable)
20+
type: textarea
21+
validations:
22+
required: true
23+
- id: reproduce-steps
24+
attributes:
25+
label: Steps to help reproduce the behavior
26+
placeholder: |
27+
1. In this environment...
28+
2. With this config...
29+
3. Run '...'
30+
4. See error...
31+
type: textarea
32+
validations:
33+
required: true
34+
- id: environment
35+
attributes:
36+
description: What operating system, version, and/or environment are you working with?
37+
label: Operating system/environment
38+
placeholder: "Example: Windows 11 24H2"
39+
type: input
40+
validations:
41+
required: true
42+
- id: python-version
43+
attributes:
44+
description: |
45+
What implementation and version of Python are you working with?
46+
CPython is assumed unless indicated otherwise.
47+
label: Python Version
48+
placeholder: "Example: 3.12.0"
49+
type: input
50+
validations:
51+
required: true
52+
- id: version
53+
attributes:
54+
description: What version of `bunkr-uploader` are you encountering this issue with?
55+
label: version
56+
type: input
57+
validations:
58+
required: true
59+
- id: anything-else
60+
attributes:
61+
description: Anything that will give us more context about the issue you are encountering!
62+
label: Links, references, and/or additional comments?
63+
type: textarea
64+
description: File a bug report
65+
labels: [ "bug" ]
66+
assignees: [ NTFSvolume ]
67+
title: "[BUG] <enter a bug description here>"
68+
name: Bug Report

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Bunkrr Uploader
22

3-
WIP
3+
WORK IN PROGRESS
44

55
## Supports
66
- Bunkrr accounts
@@ -10,16 +10,17 @@ WIP
1010

1111
# TODO
1212
- [ ] Use nicegui
13-
- [ ] Slit into API and client
14-
- [ ] Migrate to Nicequests
13+
- [X] Slit API and UploadClient
14+
- [ ] Migrate to `~~Niquests~~ aiohttp
1515
- [ ] Upload logging
16+
- [ ] Replace tqdm with rich progress
1617
- [ ] Skipping duplicate uploads
1718
- [ ] Private and public directory uploads
1819
- [ ] Update README
1920
- [ ] Make it work
2021
- [ ] Add file zipping and cleanup
2122
- [ ] Add tests
2223
- [ ] Add github runners for tests
23-
- [ ] Recursive directory upload support
24+
- [X] Recursive directory upload support
2425

2526
Original code by [alexmi256](https://github.com/alexmi256/bunkrr-uploader)

0 commit comments

Comments
 (0)