From 2b4ca5d2927b706c3bdc98ffd0a0b66232bc0b65 Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Tue, 20 Feb 2024 10:36:00 +0900 Subject: [PATCH] github: add missing GitHub discussions form (#4403) At least, form template should be applied for Q&A category to support the problem. Signed-off-by: Kentaro Hayashi --- .github/DISCUSSION_TEMPLATE/q-a-japanese.yml | 50 ++++++++++++++++++++ .github/DISCUSSION_TEMPLATE/q-a.yml | 47 ++++++++++++++++++ 2 files changed, 97 insertions(+) create mode 100644 .github/DISCUSSION_TEMPLATE/q-a-japanese.yml create mode 100644 .github/DISCUSSION_TEMPLATE/q-a.yml diff --git a/.github/DISCUSSION_TEMPLATE/q-a-japanese.yml b/.github/DISCUSSION_TEMPLATE/q-a-japanese.yml new file mode 100644 index 0000000000..97405057d1 --- /dev/null +++ b/.github/DISCUSSION_TEMPLATE/q-a-japanese.yml @@ -0,0 +1,50 @@ +title: "[QA (Japanese)]" +labels: ["Q&A (Japanese)"] +body: + - type: markdown + attributes: + value: | + 日本語で気軽に質問するためのカテゴリです。もし他の人が困っているのを見つけたらぜひ回答してあげてください。 + - type: textarea + id: question + attributes: + label: やりたいこと + description: | + 何について困っているのかを書いてください。試したことや実際の結果を示してください。 + 期待する挙動と実際の結果の違いがあればそれも書くのをおすすめします。 + render: markdown + validations: + required: true + - type: textarea + id: configuration + attributes: + label: 設定した内容 + description: | + どのような設定をして期待する挙動を実現しようとしたのかを書いてください。(例: fluentd.confの内容を貼り付ける) + render: apache + - type: textarea + id: logs + attributes: + label: ログの内容 + description: | + Fluentdのログを提示してください。エラーログがあると回答の助けになります。(例: fluentd.logの内容を貼り付ける) + render: shell + - type: textarea + id: environment + attributes: + label: 環境について + description: | + - Fluentd or td-agent version: `fluentd --version` or `td-agent --version` + - Operating system: `cat /etc/os-release` + - Kernel version: `uname -r` + + どんな環境で困っているかの情報がないと、再現できないため誰も回答できないことがあります。 + 必要な情報を記入することをおすすめします。 + value: | + - Fluentd version: + - TD Agent version: + - Fluent Package version: + - Docker image (tag): + - Operating system: + - Kernel version: + render: markdown diff --git a/.github/DISCUSSION_TEMPLATE/q-a.yml b/.github/DISCUSSION_TEMPLATE/q-a.yml new file mode 100644 index 0000000000..7a83938ef1 --- /dev/null +++ b/.github/DISCUSSION_TEMPLATE/q-a.yml @@ -0,0 +1,47 @@ +title: "[Q&A]" +labels: ["Q&A"] +body: + - type: markdown + attributes: + value: | + It is recommended to support each other. + - type: textarea + id: question + attributes: + label: What is a problem? + description: | + A clear and concise description of what you want to happen. + What exactly did you do (or not do) that was effective (or ineffective)? + render: markdown + validations: + required: true + - type: textarea + id: configuration + attributes: + label: Describe the configuration of Fluentd + description: | + If there is the actual configuration of Fluentd, it will help. + - type: textarea + id: logs + attributes: + label: Describe the logs of Fluentd + description: | + If there are error logs of Fluentd, it will help. + - type: textarea + id: environment + attributes: + label: Environment + description: | + - Fluentd or td-agent version: `fluentd --version` or `td-agent --version` + - Operating system: `cat /etc/os-release` + - Kernel version: `uname -r` + + Please describe your environment information. If will help to support. + value: | + - Fluentd version: + - TD Agent version: + - Fluent Package version: + - Docker image (tag): + - Operating system: + - Kernel version: + render: markdown