From 55d05447f5e321eafa8f791bca0679ba4e6fa7b2 Mon Sep 17 00:00:00 2001 From: yejia-stripe <90646909+yejia-stripe@users.noreply.github.com> Date: Tue, 19 Apr 2022 15:28:39 -0400 Subject: [PATCH] Add issue templates (#1049) Add issue templates for bug reports and feature requests, using the default ones on GitHub. --- .github/ISSUE_TEMPLATE/bug_report.md | 32 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++ 2 files changed, 52 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 00000000..af569dc4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Fetch a '...' +2. Update the '....' +3. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Code snippets and outputs** +If applicable, add code snippets and/or screenshots to help explain your problem. + +**Environment (please complete the following information):** + - OS: [e.g. macOS] + - Language version: [e.g. Ruby 3.1.2] + - Library version [e.g. stripe-ruby v5.52.0] + - API version: [e.g. 2020-08-27] (See [Versioning](https://stripe.com/docs/api/versioning) in the API Reference to find which version you're using) + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..d7dd455d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this library +title: '' +labels: feature-request +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +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** +Add any other context about the feature request here.