├── .github └── ISSUE_TEMPLATE │ ├── 03-discussion.md │ ├── config.yml │ ├── 01-bug.yml │ └── 02-feature.yml └── README.md /.github/ISSUE_TEMPLATE/03-discussion.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 其他讨论 / Discussion 3 | about: 未被上述模板覆盖的其他类型的讨论 / Other types of discussions not in templates above. 4 | 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: USTCLUG Mirror Request 4 | url: https://github.com/ustclug/mirrorrequest/issues/new/choose 5 | about: 新增镜像请求 / New mirror request 6 | - name: USTCLUG Mirror help 7 | url: https://github.com/ustclug/mirrorhelp/issues/new/choose 8 | about: 镜像站帮助反馈 / Mirror help bug report 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-bug.yml: -------------------------------------------------------------------------------- 1 | name: 故障反馈 / Bug report 2 | description: 请详细描述您的问题 / Please describe your problem in details. 3 | labels: 4 | - bug 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | 请在此处详细描述您的问题 / Please describe your problem in details here. 10 | - type: textarea 11 | id: feature 12 | attributes: 13 | label: 问题描述 / Bug description 14 | validations: 15 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-feature.yml: -------------------------------------------------------------------------------- 1 | name: 功能请求 / Feature request 2 | description: 请在此处描述需要的功能 / Please describe your feature request. 3 | labels: 4 | - enhancement 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | 请在此处描述需要的功能 / Please describe your feature request 10 | - type: textarea 11 | id: feature 12 | attributes: 13 | label: 功能描述 / Feature description 14 | validations: 15 | required: true 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # discussions 2 | Issue Tracker for the services provided by USTC LUG 3 | 4 | ## Usage 5 | 6 | You can open an issue here if you want to request a feature or report a bug. 7 | 8 | ## Notice 9 | 10 | Here is the place to discuss the services provided by USTC LUG. 11 | 12 | Topic is only limited to **Features** and **Bugs**. 13 | 14 | Please do **NOT** open an issue if you don't know usages of the services or you need other assistance. You should ask those questions in our [mailing list](https://lug.ustc.edu.cn/wiki/lug/mailinglist). 15 | 16 | Services refer to: 17 | 18 | * [Mirrors](https://mirrors.ustc.edu.cn) 19 | * [DNS](dns.lug.ustc.edu.cn) 20 | * [PXE](http://pxe.ustc.edu.cn) 21 | * [GitLab](https://git.lug.ustc.edu.cn) 22 | * [Light](https://light.ustclug.org) 23 | * [VPN](https://getvpn.ustclug.org) 24 | * [FTP](https://ftp.lug.ustc.edu.cn) 25 | * [LUGI VPN](board.ustclug.org) (internal) 26 | * [LDAP](https://ldap.lug.ustc.edu.cn) (internal) 27 | * [Server Status](https://status.ustclug.org) (internal) 28 | 29 | Also, when reporting **security**-related bugs, please send email to `lug AT ustc.edu.cn`, and do **NOT** open the issue in public! 30 | 31 | *** 32 | 33 | 34 | LUG@USTC 35 | --------------------------------------------------------------------------------