From 4959f6c876ec4247c20554b560e8190e1a18387d Mon Sep 17 00:00:00 2001 From: Bharath <44696641+cb-bharathvaj@users.noreply.github.com> Date: Wed, 29 Nov 2023 11:12:50 +0530 Subject: [PATCH] Create bug_report.yml --- .../workflows/ISSUE_TEMPLATE/bug_report.yml | 81 +++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 .github/workflows/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/workflows/ISSUE_TEMPLATE/bug_report.yml b/.github/workflows/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..feb20ec --- /dev/null +++ b/.github/workflows/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,81 @@ +name: Bug Report +description: Report a bug for this repository. +labels: + - Bug + +body: + + - type: textarea + id: what-happened + attributes: + label: Description of the Bug + description: Please provide a clear and concise description of the bug. + placeholder: Describe what you're experiencing. + validations: + required: true + + - type: textarea + id: repro-steps + attributes: + label: Steps to reproduce + description: Clear and concise instructions to reproduce the bug are essential for quick resolution. + placeholder: | + 1. Fetch '...' + 2. Update the '....' + 3. Encounter the error + validations: + required: true + + - type: textarea + id: expected-behavior + attributes: + label: Expected Behavior + description: Describe what you expected to happen. + validations: + required: true + + - type: textarea + id: code-snippets + attributes: + label: Code Snippets (if applicable) + description: If relevant, provide code snippets to clarify the issue. + render: Ruby + validations: + required: false + + - type: input + id: os + attributes: + label: Operating System + placeholder: macOS + validations: + required: true + + - type: input + id: language-version + attributes: + label: Language version + placeholder: Ruby 3.2.2 + validations: + required: true + + - type: input + id: lib-version + attributes: + label: Library version + placeholder: v2.32.0 + validations: + required: true + + - type: textarea + id: additional-context + attributes: + label: Additional context + description: Provide any other relevant information about the problem. + validations: + required: false + + - type: markdown + attributes: + value: | + Thank you for taking the time to submit this bug report!