├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── questions.md ├── pull_request_template.md └── workflows │ └── reviewpad.yml ├── .nojekyll ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RESOURCES.md ├── STACKIES.md ├── _coverpage.md ├── _sidebar.md ├── index.html └── reviewpad.yml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/.github/ISSUE_TEMPLATE/questions.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/reviewpad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/.github/workflows/reviewpad.yml -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/README.md -------------------------------------------------------------------------------- /RESOURCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/RESOURCES.md -------------------------------------------------------------------------------- /STACKIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/STACKIES.md -------------------------------------------------------------------------------- /_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/_coverpage.md -------------------------------------------------------------------------------- /_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/_sidebar.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/index.html -------------------------------------------------------------------------------- /reviewpad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbbeyIT/Stackie-2023-resolution/HEAD/reviewpad.yml --------------------------------------------------------------------------------