From 222f861b908c54fb85e2fe840722e1d046248676 Mon Sep 17 00:00:00 2001 From: Stephen Sorriaux Date: Sat, 9 May 2020 10:39:22 +0000 Subject: feat(chore): using Github templates for issues and PRs Let's make our life a little easier using those templates. See https://help.github.com/en/github/building-a-strong-community/about-issue-and-pull-request-templates for reference. --- .github/ISSUE_TEMPLATE/bug-report.md | 31 +++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/enhancement.md | 13 +++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 12 ++++++++++++ 3 files changed, 56 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 0000000..db670b2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,31 @@ +--- +name: Bug Report +about: Report a bug encountered while using Kazoo + +--- + + + + +## Expected Behavior + + +## Actual Behavior + + +## Snippet to Reproduce the Problem + +```COPY/PASTE the snippet here (omit any sensitive information)``` + +## Logs with logging in DEBUG mode + +```COPY/PASTE the result of the snippet here (omit any sensitive information)``` + +## Specifications + + - Kazoo version: + - Result of `pip list` command: + - Zookeeper version: + - Zookeeper configuration: put here any useful ZK configuration (authentication, encryption, number of ZK members, number of (concurrent?) clients, Java version, krb5 version, etc.) + - Python version: + - OS: diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md new file mode 100644 index 0000000..8884a22 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -0,0 +1,13 @@ +--- +name: Enhancement Request +about: Suggest an enhancement for Kazoo + +--- + + + +## What would you like to be added + + +## Why is this needed + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..41a81be --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,12 @@ +Fixes # + +## Why is this needed? + +## Proposed Changes + + - change 1 + - change 2 + - ... + +## Does this PR introduce any breaking change? + -- cgit v1.2.1