From 474da3cbb2d5fddaf6959ed907389005ae30bc51 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Thu, 14 May 2026 16:03:08 -0400 Subject: [PATCH] docs: add bug report issue template Adds a structured GitHub issue form for bug reports with environment details and a prefilled description guiding reporters to include expected behavior, actual behavior, and logs. Co-Authored-By: Claude Closes: #967 Signed-off-by: Ryan Petrello --- .github/ISSUE_TEMPLATE/bug_report.yml | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..7912af8c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,33 @@ +name: Bug Report +description: Report a bug in fromager +labels: ["bug"] +title: "[Bug]: " +body: + - type: textarea + id: environment + attributes: + label: Environment + description: Details about your build environment. + value: | + - Fromager version: + - Python version: + - OS / architecture: + - Container or local: + validations: + required: true + + - type: textarea + id: bug-description + attributes: + label: Bug description + description: Describe the bug you encountered. + value: | + **Expected behavior:** + + + **Actual behavior:** + + + **Steps to reproduce / logs:** + validations: + required: true