From 4b8f7eae13c0a6077a8a16c9820ff9baa820ee60 Mon Sep 17 00:00:00 2001 From: kurokobo <2920259+kurokobo@users.noreply.github.com> Date: Thu, 22 Dec 2022 08:23:05 +0900 Subject: [PATCH] feat: add issue templates for questions --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/question_guide.md | 50 ++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/question_usage.md | 49 +++++++++++++++++++++++ 3 files changed, 100 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/question_guide.md create mode 100644 .github/ISSUE_TEMPLATE/question_usage.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 8c52deb..a5567ae 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -2,7 +2,7 @@ name: 🐞 Bug Report about: Create a report to help us improve title: '' -labels: '' +labels: bug assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/question_guide.md b/.github/ISSUE_TEMPLATE/question_guide.md new file mode 100644 index 0000000..0dbc8f8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question_guide.md @@ -0,0 +1,50 @@ +--- +name: ❔ Question - Something doesn't work as guided +about: Request for help if you have trouble during following the guide +title: '' +labels: question +assignees: '' + +--- + +## Environment + + +- OS: CentOS X.Y, RHEL X.Y, Ubuntu X.Y, Debian X.Y, ... +- Kubernetes/K3s: X.Y.Z +- AWX Operator: X.Y.Z + +## Description + + + + +Blah blah blah ... + +## Step to Reproduce + + +1. Deploy ... +2. Invoke `kubectl ...` +3. ... +4. ... + +## Logs + + + + +```bash +$ kubectl ... +... +``` + +## Files + + +```yaml +--- +apiVersion: awx.ansible.com/v1beta1 +kind: AWX +... +``` diff --git a/.github/ISSUE_TEMPLATE/question_usage.md b/.github/ISSUE_TEMPLATE/question_usage.md new file mode 100644 index 0000000..5950599 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question_usage.md @@ -0,0 +1,49 @@ +--- +name: ❔ Question - How to use for my use cases +about: Request for help with usage and customization for specific use cases +title: '' +labels: question +assignees: '' + +--- + +## Environment + + +- OS: CentOS X.Y, RHEL X.Y, Ubuntu X.Y, Debian X.Y, ... +- Kubernetes/K3s: X.Y.Z +- AWX Operator: X.Y.Z + +## Description + + + +Blah blah blah ... + +## Step to Reproduce + + +1. Deploy ... +2. Invoke `kubectl ...` +3. ... +4. ... + +## Logs + + + + +```bash +$ kubectl ... +... +``` + +## Files + + +```yaml +--- +apiVersion: awx.ansible.com/v1beta1 +kind: AWX +... +```