├── .github └── ISSUE_TEMPLATE │ ├── config.yml │ ├── mq-bug-report.md │ ├── mq-feature-request.md │ ├── perseus-bug-report.md │ ├── perseus-feature-request.md │ └── workflows │ └── label-checker.yml └── README.md /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/mq-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cox-labs/CoxLab_Bug_Reporting/HEAD/.github/ISSUE_TEMPLATE/mq-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/mq-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cox-labs/CoxLab_Bug_Reporting/HEAD/.github/ISSUE_TEMPLATE/mq-feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/perseus-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cox-labs/CoxLab_Bug_Reporting/HEAD/.github/ISSUE_TEMPLATE/perseus-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/perseus-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cox-labs/CoxLab_Bug_Reporting/HEAD/.github/ISSUE_TEMPLATE/perseus-feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/workflows/label-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cox-labs/CoxLab_Bug_Reporting/HEAD/.github/ISSUE_TEMPLATE/workflows/label-checker.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cox-labs/CoxLab_Bug_Reporting/HEAD/README.md --------------------------------------------------------------------------------