Skip to content

Commit 3c218a5

Browse files
committed
add issue templates, funding, and stale bot
1 parent 03af516 commit 3c218a5

File tree

5 files changed

+92
-0
lines changed

5 files changed

+92
-0
lines changed

.github/FUNDING.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
github: [jneilliii]
2+
patreon: jneilliii
3+
custom: ['https://www.paypal.me/jneilliii']

.github/ISSUE_TEMPLATE/bug_report.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Bug report
3+
about: Please make sure to check other issues, including closed ones, prior to submitting a bug report. Debug logs are required and any bug report submitted without them will be ignored and closed.
4+
title: "[BUG]: "
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the Bug**
11+
<!-- A clear and concise description of what the bug is. -->
12+
13+
**Expected Behavior**
14+
<!-- A clear and concise description of what you expected to happen. -->
15+
16+
**Debug Logs**
17+
<!-- If logs are not included in your bug report it will be closed. Enable debug logging for octoprint.plugins.bambu_printer in OctoPrint's logging section of settings and recreate the issue then attach octoprint.log and plugin_bambu_printer_serial.log to this bug report. -->
18+
19+
**Screenshots**
20+
<!-- Please share any relevant screenshots related to the issue. -->
21+
22+
**Printer and Plugin Setting Details**
23+
24+
* Printer model?
25+
* Is your printer connected to Bambu Cloud?
26+
* Is the plugin configured for local access only?
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Create a feature request for an improvement or change you'd like implemented.
4+
title: "[FR]: "
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
12+
13+
**Describe the solution you'd like**
14+
<!-- A clear and concise description of what you want to happen. -->
15+
16+
**Describe alternatives you've considered**
17+
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
18+
19+
**Additional context**
20+
<!-- Add any other context or screenshots about the feature request here. -->

.github/stale.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 14
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 7
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- enhancement
8+
- bug
9+
# Label to use when marking an issue as stale
10+
staleLabel: stale
11+
# Comment to post when marking an issue as stale. Set to `false` to disable
12+
markComment: >
13+
This issue has been automatically marked as stale because it has not had
14+
activity in 14 days. It will be closed if no further activity occurs in 7 days.
15+
# Comment to post when closing a stale issue. Set to `false` to disable
16+
closeComment: false

.github/workflows/stale.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Mark Stale Issues
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
permissions:
7+
actions: write
8+
jobs:
9+
stale:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/stale@v9
13+
with:
14+
repo-token: ${{ secrets.GITHUB_TOKEN }}
15+
stale-issue-message: 'This issue has been automatically marked as stale because it has not had activity in 14 days. It will be closed if no further activity occurs in 7 days'
16+
days-before-stale: 14
17+
days-before-close: 7
18+
stale-issue-label: 'stale'
19+
days-before-issue-stale: 14
20+
days-before-pr-stale: -1
21+
days-before-issue-close: 7
22+
days-before-pr-close: -1
23+
exempt-issue-labels: 'bug,enhancement'
24+
- uses: actions/checkout@v4
25+
- uses: gautamkrishnar/keepalive-workflow@v2
26+
with:
27+
use_api: true

0 commit comments

Comments
 (0)