├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.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: textarea 31 | id: bug-description 32 | attributes: 33 | label: Bug description 34 | description: What happened and what did you expect to happen? 35 | validations: 36 | required: true 37 | - type: textarea 38 | id: steps 39 | attributes: 40 | label: Steps to reproduce 41 | description: Which steps do we need to take to reproduce this error? 42 | 43 | - type: textarea 44 | id: logs 45 | attributes: 46 | label: Relevant log output 47 | description: If applicable, provide relevant log output. No need for backticks here. 48 | render: shell 49 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Check the docs 4 | url: https://beyondco.de/docs/helo/getting-started/installation 5 | about: 'This repository is for reporting bugs and proposing new features. If you need help with your first steps with HELO, check out the docs!' 6 | - name: Security vulnerabilities 7 | url: https://@beyondco.de 8 | about: If you want to report a security issue, please contact our support. 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Propose a new feature for HELO 3 | title: "[Feature Request]: " 4 | labels: [feature request] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for proposing a feature for HELO! 10 | - type: textarea 11 | id: feature-description 12 | attributes: 13 | label: Feature Description 14 | description: How should this feature look like? 15 | placeholder: Location in the software, usage, output ... 16 | validations: 17 | required: true 18 | - type: textarea 19 | id: valuable 20 | attributes: 21 | label: Is this feature valuable for other users as well and why? 22 | description: We want to build software that provides a great experience for all of us. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![HELO](https://usehelo.com/images/social.png) 2 | 3 | # HELO email testing 4 | 5 | Please contact us via the support email address at [HELO](https://usehelo.com). 6 | 7 | --------------------------------------------------------------------------------