diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..651be6c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,37 @@ +name: Bug 🐞 +description: Report a bug +labels: [support, bug] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! ☺️ + - type: textarea + attributes: + label: Steps to reproduce + validations: + required: true + - type: textarea + attributes: + label: What is expected? + validations: + required: true + - type: textarea + attributes: + label: What is actually happening? + validations: + required: true + - type: textarea + attributes: + label: Additional data + value: | + + + diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 0ee0d0f..3a72126 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,4 +1,4 @@ contact_links: - name: Raise Support url: https://tools.themeselection.com/github/raise-support - about: Raise support using form provided in this link \ No newline at end of file + about: Raise support using form provided in this link diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 0000000..827311a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,18 @@ +name: Feature request ✨ +description: Suggest an idea or ask for a feature that you would like to have +labels: [support, feature-req] +body: + - type: markdown + attributes: + value: | + Thanks for letting us know how we can improve our product! ☺️ + - type: textarea + attributes: + label: What problem does this feature solve? + validations: + required: true + - type: textarea + attributes: + label: What does the proposed solution look like? + validations: + required: true diff --git a/.github/workflows/handle-new-issue.yml b/.github/workflows/handle-new-issue.yml new file mode 100644 index 0000000..d338fe2 --- /dev/null +++ b/.github/workflows/handle-new-issue.yml @@ -0,0 +1,19 @@ +name: 'Handle new issue' +on: + issues: + types: [opened] + +jobs: + handle_new_issue: + runs-on: ubuntu-latest + name: Handle new issue + steps: + - name: Find duplicates + uses: wow-actions/potential-duplicates@v1.0.8 + with: + GITHUB_TOKEN: ${{ github.token }} + label: duplicate + comment: > + Potential duplicates: {{#issues}} + - #{{ number }} _({{ accuracy }}% Match)_ + {{/issues}} \ No newline at end of file diff --git a/.github/workflows/issue-staler.yml b/.github/workflows/issue-staler.yml index c486a6d..534dc57 100644 --- a/.github/workflows/issue-staler.yml +++ b/.github/workflows/issue-staler.yml @@ -15,4 +15,4 @@ jobs: only-labels: 'awaiting-reply' exempt-issue-labels: 'triage' days-before-stale: 7 - days-before-close: 7 \ No newline at end of file + days-before-close: 7 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..16781c6 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 ThemeSelection + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.