diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..f17674a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,43 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: '' +--- + + + +**Checklist:** + +- [ ] I updated to the latest version available +- [ ] I cleared the cache of my browser + +**Release with the issue:** + +**Last working release (if known):** + +**Browser and Operating System:** + + + +**Description of problem:** + + + +**Javascript errors shown in the web inspector (if applicable):** + +``` + +``` + +**Additional information:** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..11fc491 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/stale.yml b/.github/ISSUE_TEMPLATE/stale.yml new file mode 100644 index 0000000..dc90e5a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/stale.yml @@ -0,0 +1,17 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 60 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - pinned + - security +# Label to use when marking an issue as stale +staleLabel: wontfix +# Comment to post when marking an issue as stale. Set to `false` to disable +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. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false diff --git a/.github/workflows/hacs_action.yml b/.github/workflows/hacs_action.yml new file mode 100644 index 0000000..d810d05 --- /dev/null +++ b/.github/workflows/hacs_action.yml @@ -0,0 +1,22 @@ +name: HACS Action + +on: + push: + branches: + - main + release: + types: [published] + pull_request: + schedule: + - cron: '0 0 * * *' + +jobs: + validate: + runs-on: 'ubuntu-latest' + steps: + - name: Checkout v3 + uses: 'actions/checkout@v3' + - name: HACS Action + uses: 'hacs/action@main' + with: + category: 'theme'