From 5169644b9198f307ed198a9360aab196cbd07409 Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Wed, 3 Jul 2024 13:41:29 +0200 Subject: [PATCH] chore: use global issue templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 89 ---------------------- .github/ISSUE_TEMPLATE/config.yml | 1 - .github/ISSUE_TEMPLATE/feature_request.yml | 18 ----- 3 files changed, 108 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml delete mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml deleted file mode 100644 index 3dff5ea..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ /dev/null @@ -1,89 +0,0 @@ -name: 🐞 Bug Report -description: Create a report to help us improve. -labels: [bug] -body: - - type: checkboxes - id: terms - attributes: - label: Welcome - options: - - label: Yes, I'm using the latest release. - required: true - - label: Yes, I've searched similar issues on GitHub and didn't find any. - required: true - - - type: textarea - id: expected - attributes: - label: What did you expect to see? - placeholder: Description. - validations: - required: true - - - type: textarea - id: current - attributes: - label: What did you see instead? - placeholder: Description. - validations: - required: true - - - type: textarea - id: steps - attributes: - label: Reproduction steps - description: "How do you trigger this bug? Please walk us through it step by step." - render: console - placeholder: |- - ```go - // Paste you code here. - ``` - validations: - required: true - - - type: input - id: version - attributes: - label: Version of flock - validations: - required: true - - - type: textarea - id: logs - attributes: - label: Logs - render: console - value: |- -
- - ```console - # paste output here - ``` - -
- validations: - required: true - - - type: textarea - id: go-env - attributes: - label: Go environment - value: |- -
- - ```console - $ go version && go env - # paste output here - ``` - -
- validations: - required: true - - - type: checkboxes - id: validation - attributes: - label: Validation - options: - - label: Yes, I've included all information above (version, config, etc.). - required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 3ba13e0..0000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1 +0,0 @@ -blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml deleted file mode 100644 index 4a35570..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: 💡 Feature request -description: Suggest an idea for this project. -body: - - type: checkboxes - id: terms - attributes: - label: Welcome - options: - - label: Yes, I've searched similar issues on GitHub and didn't find any. - required: true - - - type: textarea - id: description - attributes: - label: Detailed Description - placeholder: Description. - validations: - required: true