diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 6b57116..0000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,19 +0,0 @@ -#### Problem - -... - -#### Steps to replicate - -Provide example config and message - -#### Expected Behavior - -... - -#### Your environment - -* OS version -* paste result of ``fluentd --version`` or ``td-agent --version`` -* plugin version - * paste boot log of fluentd or td-agent - * paste result of ``fluent-gem list``, ``td-agent-gem list`` or your Gemfile.lock diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..4c239fd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,67 @@ +name: Bug Report +description: Create a report with a procedure for reproducing the bug +labels: "waiting-for-triage" +body: + - type: textarea + id: description + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is + validations: + required: true + - type: textarea + id: reproduce + attributes: + label: To Reproduce + description: Steps to reproduce the behavior + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen + validations: + required: true + - type: textarea + id: environment + attributes: + label: Your Environment + description: | + - Fluentd or its package version: `fluentd --version` (Fluentd, fluent-package) or `td-agent --version` (td-agent) + - Operating system: `cat /etc/os-release` + - Kernel version: `uname -r` + + Tip: If you hit the problem with older fluent-plugin-concat version, try latest version first. + value: | + - Fluentd version: + - Package version: + - Operating system: + - Kernel version: + render: markdown + validations: + required: true + - type: textarea + id: configuration + attributes: + label: Your Configuration + description: | + Write your configuration here. Minimum reproducible fluentd.conf is recommended. + render: apache + validations: + required: true + - type: textarea + id: logs + attributes: + label: Your Error Log + description: Write your ALL error log here + render: shell + validations: + required: true + - type: textarea + id: addtional-context + attributes: + label: Additional context + description: Add any other context about the problem here. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..f406b2d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Ask a Question + url: https://github.com/fluent/fluentd/discussions + about: I have questions about Fluentd and plugins. Please ask and answer questions at https://github.com/fluent/fluentd/discussions diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..3a52404 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,35 @@ +name: Feature request +description: Suggest an idea for this project +labels: ["waiting-for-triage", "enhancement"] +body: + - type: textarea + id: description + attributes: + label: Is your feature request related to a problem? Please describe. + description: | + A clear and concise description of what the problem is. + Ex. I'm always frustrated when [...] + validations: + required: true + - type: textarea + id: solution + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + validations: + required: true + - type: textarea + id: alternative + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + validations: + required: true + - type: textarea + id: addtional-context + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here. + validations: + required: false +