From 575743579c5cdba8c53d71f3cc1f34fc110aa31f Mon Sep 17 00:00:00 2001 From: Marcel Wallschlaeger Date: Fri, 4 Aug 2023 21:53:04 +0200 Subject: [PATCH] added templates for issues and pr --- .github/ISSUE_TEMPLATE/bug.md | 22 +++++++++++++++ .github/ISSUE_TEMPLATE/feature.md | 18 ++++++++++++ .github/ISSUE_TEMPLATE/task_docs_others.md | 14 +++++++++ .github/pull_request_template.md | 33 ++++++++++++++++++++++ 4 files changed, 87 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.md create mode 100644 .github/ISSUE_TEMPLATE/feature.md create mode 100644 .github/ISSUE_TEMPLATE/task_docs_others.md create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md new file mode 100644 index 0000000..1463745 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -0,0 +1,22 @@ +--- +name: bug +about: Create an issue of a bug +title: 'Bug: ???' +labels: 'bug' +--- + +## Bug Description + +A clear and concise description of the bug. + +## Reproduction Steps + +best to provide your values.yaml, a brief description of your cluster and version of geonode-k8s here. + +## Behavior + +A description of what you expected to happen and what actually happened. + +## Additional Information + +Any additional information or context that may be helpful in resolving the bug. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature.md b/.github/ISSUE_TEMPLATE/feature.md new file mode 100644 index 0000000..23a576a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.md @@ -0,0 +1,18 @@ +--- +name: new feature +about: Create an issue of a feature request. +title: 'Feature: ???' +labels: 'feature' +--- + +## Feature Description + +A clear and concise description of the feature. + +## Proposed Solution + +A description of how you propose implementing the feature. + +## Additional Information + +Any additional information or context that may be helpful in implementing the feature. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/task_docs_others.md b/.github/ISSUE_TEMPLATE/task_docs_others.md new file mode 100644 index 0000000..d5cff45 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/task_docs_others.md @@ -0,0 +1,14 @@ +--- +name: new task/todo +about: Create an issue of a task or todo, e.g. missing docs +title: 'Task: ???' +labels: 'task' +--- + +## Task Description + +A clear and concise description of the task. + +## Additional Information + +Any additional information or context that may be helpful in completing the task. \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..54a37a1 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,33 @@ +## Description + +A brief description of the feature or bug that this pull request addresses. + +## Type of Change + +Please select the relevant option: + +- [ ] Bug fix +- [ ] New feature +- [ ] Documentation update +- [ ] Refactoring +- [ ] Other (please describe) + +## Related Issue + +If there is an existing issue related to this pull request, please reference it here. + +closes # + +## Checklist + +Please ensure that your pull request meets the following requirements: + +- The pull request is limited to one type (docs, feature, bug fix, etc.) +- The pull request is as small as possible. Consider opening multiple pull requests instead of one large one. +- The feature or bug fix has been discussed and documented in an issue beforehand. + +## Additional Notes + +Any additional information or context regarding the pull request can be provided here. + +Thank you for creating this pull request \ No newline at end of file