From 2a16115e69831ab24ec176e4ed57c9f2315971e6 Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Tue, 18 Mar 2025 01:54:08 -0400 Subject: [PATCH] feat: add issue templates --- .github/ISSUE_TEMPLATE/bug-report.yaml | 38 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature-request.yaml | 22 ++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml new file mode 100644 index 0000000..671120b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -0,0 +1,38 @@ +name: Bug Report +description: Report an issue with Headplane +assignees: [tale] +labels: [bug, triage] +body: + - type: input + attributes: + label: Title + description: A short summary of the issue + placeholder: e.g. "Error when uploading a file" + validations: + required: true + - type: textarea + attributes: + label: Description + description: | + A detailed description of the issue and steps to reproduce it. + If applicable, include any error messages or screenshots. + + If this is not an issue with Headplane, but an issue with your + environment, please consider opening a discussion instead. + placeholder: e.g. "When I try to upload a file, I get an error message." + validations: + required: true + - type: input + attributes: + label: Headplane Version + description: What version of Headplane are you using? + placeholder: e.g. "v0.5.5" + validations: + required: true + - type: input + attributes: + label: Headscale Version + description: What version of Headscale are you using? + placeholder: e.g. "v0.25.1" + validations: + required: true 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.yaml b/.github/ISSUE_TEMPLATE/feature-request.yaml new file mode 100644 index 0000000..bfb5a2e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yaml @@ -0,0 +1,22 @@ +name: Feature Request +description: Request a new feature or enhancement for Headplane +assignees: [tale] +labels: [enhancement, triage] +body: + - type: input + attributes: + label: Title + description: A short summary of the enhancement you are requesting. + placeholder: e.g. "Add support for custom themes" + validations: + required: true + - type: textarea + attributes: + label: Description + description: | + A detailed description of the feature you would like to see added. + Please include any relevant context, such as why this feature is + important and how it would benefit other users beyond yourself. + placeholder: e.g. "I would like to see support for custom themes in Headplane so that I can personalize the interface to my liking." + validations: + required: true