├── README.md ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── cicd.yml │ ├── feature_request.md │ └── bug_report.md └── SECURITY.md └── SECURITY.md /README.md: -------------------------------------------------------------------------------- 1 | # .github 2 | Defaults 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Report Security Vulnerability 4 | url: https://forms.gle/5eRtrgDxXEVwdjMZA 5 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Reporting Security Vulnerabilities 2 | 3 | If you've identified a security vulnerability, please [submit a report here](https://forms.gle/RgtxUSLZjazN7Q7v8). 4 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Reporting Security Vulnerabilities 2 | 3 | If you've identified a security vulnerability, please [submit a report here](https://forms.gle/RgtxUSLZjazN7Q7v8). 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/cicd.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: "CI/CD Feature" 3 | description: Use this template to request new CI/CD features. 4 | title: "[FEATURE NAME]: Description" 5 | labels: cicd 6 | assignees: coreybutler 7 | body: 8 | - type: textarea 9 | attributes: 10 | label: Name 11 | --- 12 | 13 | Describe the feature... 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature Request 3 | about: Use this template for requesting new features 4 | title: "[DATE]: [FEATURE NAME]" 5 | labels: enhancement 6 | assignees: coreybutler 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 |
| Please use the reactions to cast a vote in favor of or against this feature suggestion » | 26 |![]() |
27 |