├── .github └── ISSUE_TEMPLATE │ └── idea---feature-request.md ├── README.md └── action.yml /.github/ISSUE_TEMPLATE/idea---feature-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Idea / Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IDEAS 2 | IDEAS for Apps and Features 3 | 4 | You can submit any Idea here asking for creating new apps adding new features or improve and change existing ones. 5 | 6 | - Search for existing ideas before posting a new one 7 | - Vote for existing idease using use basic emoticons like :) or :( 8 | - Any comment or suggestion to existing IDEAS is very appreciated 9 | - When you post an idea to improve existing apps please include reference using full app name 10 | 11 | To Submit a new Idea click on ISSUE and insert a new one 12 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | - name: Issue Dashboard 2 | uses: ethomson/issue-dashboard@v1.0.2 --------------------------------------------------------------------------------