├── SECURITY.md ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── config.yml │ └── bug_report.md └── README.md /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | See https://yunohost.org/en/security_team 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for YunoHost (but not apps!) 4 | title: '' 5 | labels: ":birthday: feature" 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: YunoHost community support 4 | url: https://yunohost.org/help 5 | about: General support questions are welcomed on our forum or chatrooms on IRC, XMPP, and Matrix 6 | - name: YunoHost security 7 | url: https://yunohost.org/security_team 8 | about: Please report security vulnerabilities here. 9 | - name: Bug in an app 10 | url: https://github.com/YunoHost-Apps 11 | about: Report bugs in packaged apps in their own repository 12 | - name: App request 13 | url: https://yunohost.org/apps_wishlist 14 | about: Checkout the apps wishlist (you can edit it!) 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Issues 2 | This is the general issue tracker for the YunoHost project 3 | 4 | **:warning: If you have found a security issue, refer to our [security team](https://yunohost.org/security_team).** 5 | 6 | Please read carefully the issue template and the following guide. 7 | 8 | Let's determine if you are on the right place: 9 | - If your bug relates to an app provided by YunoHost (install, update, backup, restore, change url...), we prefer that you post your issue on their own issue tracker in the [YunoHost-Apps](https://github.com/YunoHost-Apps) organisation. If your app is called Example, look for the "example_ynh" repository. 10 | - If you were performing an action from the webadmin or the CLI and want some support, you can post about it on our forum (https://forum.yunohost.org/) or our chat room (https://yunohost.org/help). 11 | - If you were performing an action from the webadmin or the CLI and encountered what you think is a bug, you are on the right place! Carefully follow the issue template, for better efficiency. 12 | - If you want to request an app to be packaged for YunoHost, please refer to the [apps wishlist](https://yunohost.org/apps_wishlist). You can [add it](https://github.com/yunohost/doc/blob/master/pages/02.applications/04.wishlist/apps_wishlist.md) if it is not already listed. 13 | - If you are requesting a feature for YunoHost, you are in the right place! Use the dedicated template and be as precise as possible in your description of the feature. 14 | - When in doubt, post here and we will figure it out together. 15 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Report unwanted behaviour of YunoHost's webadmin, CLI, features... (but not apps!) 4 | title: '' 5 | labels: ":space_invader: bug" 6 | assignees: '' 7 | 8 | --- 9 | 10 | ### Describe the bug 11 | 12 | 13 | 14 | 15 | 16 | ### Context 17 | 18 | - Hardware: *VPS bought online / Old laptop or computer / Raspberry Pi at home / Internet Cube with VPN / Other ARM board / ...* 19 | - YunoHost version: x.x.x 20 | - I have access to my server: *Through SSH | through the webadmin | direct access via keyboard / screen | ...* 21 | - Are you in a special context or did you perform some particular tweaking on your YunoHost instance?: *no / yes* 22 | - If yes, please explain: 23 | - Using, or trying to install package version/branch: 24 | - If upgrading, current YunoHost version: 25 | 26 | ### To reproduce 27 | 28 | 40 | 41 | ### Expected behavior 42 | 43 | 44 | 45 | ### Logs 46 | 47 | 56 | --------------------------------------------------------------------------------