From 03e708c390a717d38d5263fdde9ec050ce88ff52 Mon Sep 17 00:00:00 2001 From: coderrob Date: Fri, 14 Feb 2025 00:09:21 -0600 Subject: [PATCH] chore: add boilerplate project templates --- .github/CODEOWNERS | 7 +++++++ .github/FUNDING.yml | 2 ++ .github/pull_request_template.md | 11 +++++++++++ 3 files changed, 20 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/FUNDING.yml create mode 100644 .github/pull_request_template.md diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..94f7270 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,7 @@ +############################################################################ +# Repository CODEOWNERS # +# Order is important! The last matching pattern takes the most precedence. # +############################################################################ + +# Default owners, unless a later match takes precedence. +* @coderrob diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..a4481c6 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +github: [coderrob] +buy_me_a_coffee: coderrob diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..5166a5d --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,11 @@ +# Pull Request + +## Description + +Describe changes made in this pull request. + +## Checklist + +- [ ] Changes have been tested locally. +- [ ] Documentation has been updated accordingly. +- [ ] Changes have been verified to have no runtime errors.