├── .github └── ISSUE_TEMPLATE │ ├── bug.md │ ├── help.md │ ├── library.md │ ├── other.md │ ├── question.md │ ├── share.md │ └── tip.md └── README.md /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Reporting a bug 3 | about: Template for reporting a bug 4 | title: '' 5 | labels: 'type-Bug :bee:' 6 | assignees: '' 7 | 8 | --- 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Requesting for help 3 | about: Template for seeking help 4 | title: '' 5 | labels: 'type-HelpRequest :sos:' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/library.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Requesting Permission to use a third-party Library 3 | about: Template for library approval 4 | title: '' 5 | labels: 'type-RequestToUseLibrary' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Library 11 | 12 | [Library Name](Library URL) 13 | 14 | ## Purpose 15 | 16 | {Explain for what kind of functionality you intende to use it for} 17 | 18 | ## License 19 | 20 | {Mention the license under which the library is released (e.g., MIT, GPL, Apache etc.) and give a link to the relevant page on their website} 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Other 3 | about: Template for other issue 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Asking a question 3 | about: Template for asking a question 4 | title: '' 5 | labels: 'type-Question :thinking:' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/share.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Sharing a resource/link/article etc. 3 | about: Template for sharing a a resource/link/article etc. 4 | title: '💎' 5 | labels: 'type-Share :gem:' 6 | assignees: '' 7 | 8 | --- 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tip.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Sharing a tip 3 | about: Template for sharing a tip 4 | title: '💡' 5 | labels: 'type-Tip :bulb:' 6 | assignees: '' 7 | 8 | --- 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Forum 2 | 3 | This repo is used to host the issue tracker that is used as the main discussion forum of the module. 4 | 5 | * You are encouraged to `watch` this repo; that way, you will get an immediate email alert when there is an update to an issue 6 | * You can also subscribe to (or unsubscribe from) specific issues 7 | --------------------------------------------------------------------------------