From b3ec845639ea11b1b303651d19b489d18c985765 Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Thu, 7 May 2020 16:03:00 -0400 Subject: [PATCH] Add .github resources --- .github/CODEOWNERS | 1 + .github/bug_report.md | 56 ++++++++++++++++++++++++++++++++ .github/feature_request.md | 20 ++++++++++++ .github/pull_request_template.md | 9 +++++ 4 files changed, 86 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/bug_report.md create mode 100644 .github/feature_request.md create mode 100644 .github/pull_request_template.md diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..0082d7cf --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @jtcohen6 \ No newline at end of file diff --git a/.github/bug_report.md b/.github/bug_report.md new file mode 100644 index 00000000..7bef79e4 --- /dev/null +++ b/.github/bug_report.md @@ -0,0 +1,56 @@ +--- +name: Bug report +about: Report a bug or an issue you've found with this package +title: '' +labels: bug, triage +assignees: '' + +--- + +### Describe the bug + + +### Steps to reproduce + + +### Expected results + + +### Actual results + + +### Screenshots and log output + + +### System information +**The contents of your `packages.yml` file:** + +**Which database are you using dbt with?** +- [ ] redshift +- [ ] snowflake +- [ ] other (specify: ____________) + + +**The output of `dbt --version`:** +``` + +``` + +**The operating system you're using:** + +**The output of `python --version`:** + +### Additional context + diff --git a/.github/feature_request.md b/.github/feature_request.md new file mode 100644 index 00000000..b8a15304 --- /dev/null +++ b/.github/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this package +title: '' +labels: enhancement, triage +assignees: '' + +--- + +### Describe the feature +A clear and concise description of what you want to happen. + +### Describe alternatives you've considered +A clear and concise description of any alternative solutions or features you've considered. + +### Additional context +Is this feature database-specific? Which database(s) is/are relevant? Please include any other relevant context here. + +### Who will this benefit? +What kind of use case will this feature be useful for? Please be specific and provide examples, this will help us prioritize properly. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..b9780fbc --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,9 @@ +## Description & motivation + + +## Checklist +- [ ] I have verified that these changes work locally +- [ ] I have updated the README.md (if applicable) +- [ ] I have added tests & descriptions to my models (and macros if applicable)