From e5ae229f4382cbf7bd6190f17b453f738c2f0f03 Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Wed, 26 Aug 2020 11:37:33 -0400 Subject: [PATCH] Add issue, pr templates --- .github/issue_template/bug_report.md | 28 +++++++++++++++++++++++++++ .github/issue_template/enhancement.md | 23 ++++++++++++++++++++++ .github/pull_request_template.md | 22 +++++++++++++++++++++ 3 files changed, 73 insertions(+) create mode 100644 .github/issue_template/bug_report.md create mode 100644 .github/issue_template/enhancement.md create mode 100644 .github/pull_request_template.md diff --git a/.github/issue_template/bug_report.md b/.github/issue_template/bug_report.md new file mode 100644 index 000000000..df67b5d30 --- /dev/null +++ b/.github/issue_template/bug_report.md @@ -0,0 +1,28 @@ +--- +name: Bug report +about: Report a bug or an issue you've found with dbt-docs +title: '' +labels: bug, triage +assignees: '' + +--- + +### Describe the bug +A clear and concise description of what the bug is. What command did you run? What happened? + +### Steps To Reproduce +In as much detail as possible, please provide steps to reproduce the issue. Sample data that triggers the issue, example model code, etc is all very helpful here. + +### Expected behavior +A clear and concise description of what you expected to happen. + +### Screenshots and log output +If applicable, add screenshots or log output to help explain your problem. + +**The output of `dbt --version`:** +``` + +``` + +### Additional context +Add any other context about the problem here. diff --git a/.github/issue_template/enhancement.md b/.github/issue_template/enhancement.md new file mode 100644 index 000000000..4b319cefe --- /dev/null +++ b/.github/issue_template/enhancement.md @@ -0,0 +1,23 @@ +--- +name: Feature request +about: Suggest an idea for dbt-docs +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. + +### Are you interested in contributing this feature? +Let us know if you want to write some code, and how we can help. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000..e958b66dc --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,22 @@ +resolves # + + + + +### Description + + + + +### Checklist + - [ ] I have signed the [CLA](https://docs.getdbt.com/docs/contributor-license-agreements) + - [ ] I have generated docs locally, and this change appears to resolve the stated issue + - [ ] I have updated the `CHANGELOG.md` and added information about my change to the "dbt next" section. + \ No newline at end of file