├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml └── stale.yml └── README.md /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: File a bug report 3 | title: "[Bug]: " 4 | labels: [] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Before opening a bug report, please search for the behaviour in the existing issues. 10 | 11 | --- 12 | 13 | Thank you for taking the time to file a bug report. To address this bug as fast as possible, we need some information. 14 | - type: input 15 | id: os 16 | attributes: 17 | label: Operating system 18 | description: "Which operating system do you use? Please provide the version as well." 19 | placeholder: "macOS Big Sur 11.5.2" 20 | validations: 21 | required: true 22 | - type: input 23 | id: laravel 24 | attributes: 25 | label: Laravel Version 26 | description: "Please provide the full Laravel version of your project." 27 | placeholder: "v8.6.1" 28 | validations: 29 | required: true 30 | - type: input 31 | id: php 32 | attributes: 33 | label: PHP Version 34 | description: "Please provide the full PHP version that is powering Tinkerwell." 35 | placeholder: "PHP 8.0.7, built: Jun 4 2021 01:50:04" 36 | validations: 37 | required: true 38 | - type: dropdown 39 | id: location 40 | attributes: 41 | label: Project Location 42 | description: Where is the project located? 43 | options: 44 | - Local 45 | - Remote (Server) 46 | - Remote (Docker) 47 | - Somewhere else (please specify in the description!) 48 | validations: 49 | required: true 50 | - type: textarea 51 | id: bug-description 52 | attributes: 53 | label: Bug description 54 | description: What happened and what did you expect to happen? 55 | validations: 56 | required: true 57 | - type: textarea 58 | id: steps 59 | attributes: 60 | label: Steps to reproduce 61 | description: Which steps do we need to take to reproduce this error? 62 | 63 | - type: textarea 64 | id: logs 65 | attributes: 66 | label: Relevant log output 67 | description: If applicable, provide relevant log output. No need for backticks here. 68 | render: shell 69 | 70 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Feature Request 4 | url: https://github.com/beyondcode/tinkerwell-community/discussions/new?category=ideas 5 | about: Propose a new feature for Tinkerwell 6 | - name: Check the docs 7 | url: https://beyondco.de/docs/tinkerwell/getting-started/about 8 | about: 'This repository is for reporting bugs and proposing new features. If you need help with your first steps of Tinkerwell, check out the docs!' 9 | - name: Security vulnerabilities 10 | url: https://beyondco.de 11 | about: If you want to report a security issue, please contact our support. 12 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Configuration for probot-stale - https://github.com/probot/stale 2 | 3 | # Number of days of inactivity before an Issue or Pull Request becomes stale 4 | daysUntilStale: 14 5 | 6 | # Number of days of inactivity before an Issue or Pull Request with the stale label is closed. 7 | # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. 8 | daysUntilClose: 7 9 | 10 | # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) 11 | onlyLabels: ["waiting for response"] 12 | 13 | # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable 14 | exemptLabels: 15 | - pinned 16 | - security 17 | - "[Status] Maybe Later" 18 | 19 | # Set to true to ignore issues in a project (defaults to false) 20 | exemptProjects: false 21 | 22 | # Set to true to ignore issues in a milestone (defaults to false) 23 | exemptMilestones: false 24 | 25 | # Set to true to ignore issues with an assignee (defaults to false) 26 | exemptAssignees: false 27 | 28 | # Label to use when marking as stale 29 | staleLabel: wontfix 30 | 31 | # Comment to post when marking as stale. Set to `false` to disable 32 | markComment: > 33 | This issue has been automatically marked as stale because it has not had 34 | recent activity. It will be closed if no further activity occurs. Thank you 35 | for your contributions. 36 | 37 | # Comment to post when removing the stale label. 38 | # unmarkComment: > 39 | # Your comment here. 40 | 41 | # Comment to post when closing a stale Issue or Pull Request. 42 | # closeComment: > 43 | # Your comment here. 44 | 45 | # Limit the number of actions per hour, from 1-30. Default is 30 46 | limitPerRun: 30 47 | # Limit to only `issues` or `pulls` 48 | # only: issues 49 | 50 | # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': 51 | # pulls: 52 | # daysUntilStale: 30 53 | # markComment: > 54 | # This pull request has been automatically marked as stale because it has not had 55 | # recent activity. It will be closed if no further activity occurs. Thank you 56 | # for your contributions. 57 | 58 | # issues: 59 | # exemptLabels: 60 | # - confirmed 61 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Tinkerwell](https://tinkerwell.app/images/card.png) 2 | 3 | # Tinkerwell 4 | 5 | Please contact us via the support email address at [Tinkerwell](https://tinkerwell.app). 6 | --------------------------------------------------------------------------------