From ccc528d9f8e7e538d883081127ad9e3623014874 Mon Sep 17 00:00:00 2001 From: Jack Arturo Date: Tue, 28 Apr 2026 06:38:33 +0100 Subject: [PATCH] Add org-wide issue and PR templates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds bug-report and feature-request issue forms, disables blank issues (no contact_links — repos can override), and adds a baseline PR template. Inherits to every VGP repo without its own .github/ISSUE_TEMPLATE/. --- .github/ISSUE_TEMPLATE/bug_report.yml | 39 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature_request.yml | 20 +++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 12 +++++++ 4 files changed, 72 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..e940981 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,39 @@ +name: 🐛 Bug report +description: Something's broken +labels: ["bug"] +body: + - type: textarea + id: what-happened + attributes: + label: What happened? + description: What did you expect, what did you get? + validations: + required: true + - type: textarea + id: repro + attributes: + label: Steps to reproduce + placeholder: | + 1. ... + 2. ... + 3. ... + validations: + required: true + - type: input + id: version + attributes: + label: Version / commit + description: Plugin version, package version, or commit SHA + - type: textarea + id: environment + attributes: + label: Environment + placeholder: | + OS: + Node / PHP / Python version: + Browser (if relevant): + - type: textarea + id: logs + attributes: + label: Logs or screenshots + render: shell diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..3ba13e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..1551153 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,20 @@ +name: ✨ Feature request +description: Suggest something new +labels: ["enhancement"] +body: + - type: textarea + id: problem + attributes: + label: What problem does this solve? + validations: + required: true + - type: textarea + id: proposal + attributes: + label: Proposed solution + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Alternatives considered diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..2d3e965 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,12 @@ +## What + + + +## Why + + +Closes # + +## Testing + +