From d25c2e97671e41f37714a54823d53e02e370b76c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lov=C3=A9n?= Date: Sat, 24 Oct 2020 20:50:21 +0200 Subject: [PATCH] Enable github stale bot --- .github/ISSUE_TEMPLATE/bug-report.md | 45 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 7 ++++ .github/stale.yml | 9 +++++ 3 files changed, 61 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md create mode 100644 .github/stale.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 0000000..c79eac8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,45 @@ +--- +name: Bug report +about: For reporting bugs or unexpected behavior +title: '' +labels: '' +assignees: '' +--- + +My Home Assistant version: 0.XX.X + +What I am doing: + + +What I expected to happen: + + +What happened instead: + + +**Minimal** steps to reproduce: + + +```yaml +# The least ammount of code possible to reproduce my error + + + +# End of code +``` + + +Error messages from the browser console: + + +--- + +**By putting an X in the boxes ([ ]) below, I indicate that I:** + +- [ ] Understand that this is a channel for reporting bugs, not a support forum (https://community.home-assistant.io/). + +- [ ] Have made sure I am using the latest version of the plugin. + +- [ ] Have followed the troubleshooting steps of the "Common Problems" section of https://github.com/thomasloven/hass-config/wiki/Lovelace-Plugins. + +- [ ] Understand that leaving one or more boxes unticked or failure to follow the template above may increase the time required to handle my bug-report, or cause it to be closed without further action. diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 0000000..e0f987c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,7 @@ +--- +name: Feature request +about: For suggesting new features +title: '' +labels: 'feature-request' +assignees: '' +--- diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000..0d23789 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,9 @@ +daysUntilStale: 60 +daysUntilClose: 7 +exemptLabels: + - pinned + - feature-request +staleLabel: stale +markComment: > + This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. +closeComment: false