├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── issue.md ├── release-drafter.yml ├── settings.yml └── stale.yml ├── README.md └── repos.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ludeeus -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/information/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/information/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | branches: dev 2 | template: | 3 | ## Changes 4 | 5 | $CHANGES -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/information/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/information/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/information/HEAD/README.md -------------------------------------------------------------------------------- /repos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-cards/information/HEAD/repos.json --------------------------------------------------------------------------------