From 4503669442927349af458bbbd73eda9cc7fff05d Mon Sep 17 00:00:00 2001 From: Drew Walters Date: Thu, 6 Feb 2020 16:32:12 -0600 Subject: [PATCH] Add GitHub issue templates Airship is migrating from Jira to GitHub issues. This change adds GitHub issues templates [0] for bug reports and feature requests. [0] https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository Change-Id: I696ad7befdd6f5d8f584f0ea14dbfe7182ad6d12 Signed-off-by: Drew Walters --- .github/ISSUE_TEMPLATE/bug_report.md | 25 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 18 ++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..ac0702cd0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,25 @@ +--- +name: Bug report +about: Report a bug or unexpected airshipctl behavior +title: '' +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**Steps To Reproduce** +Minimal steps to reproduce the issue. + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Environment** +- airshipctl Version: +- Operating System: +- Kernel version: +- Kubernetes Version: +- Go version: +- Hardware specs (e.g. 4 vCPUs, 16GB RAM, bare metal vs VM): diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..ec2ffa871 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,18 @@ +--- +name: Feature request +about: Suggest an airshipctl feature +title: '' +labels: enhancement +assignees: '' + +--- + +**Problem description (if applicable)** +A description of the problem or background information that illustrates the need +for a new feature. + +**Proposed change** +A detailed description of the new, requested behavior. + +**Potential impacts** +Potential security or performance related impacts.