├── README.md └── .github ├── ISSUE_TEMPLATE ├── feature_request.md └── bug_report.md ├── PULL_REQUEST_TEMPLATE.md └── FUNDING.yml /README.md: -------------------------------------------------------------------------------- 1 | # .github 2 | 3 | This repository contains the templates for the bug report and feature 4 | request pages of all the projects under the radareorg umbrella. 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | ## Description 8 | 9 | *Please describe what are you missing or wanting to be improved* 10 | 11 | *Provide images, ascii-art, test files and anything that may help us understand your request* 12 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | ## Environment 2 | 3 | 4 | 5 | ## Description 6 | 7 | 8 | 9 | ## Test 10 | 11 | 12 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | **Checklist** 2 | 3 | - [ ] Closing issues: #issue 4 | - [ ] Mark this if you consider it ready to merge 5 | - [ ] I've added tests (optional) 6 | - [ ] I wrote some documentation 7 | 8 | **Description** 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: radareorg 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | --------------------------------------------------------------------------------