From 051938b0d3ff90a11907522f91c04627070702e5 Mon Sep 17 00:00:00 2001 From: crazywoola <427733928@qq.com> Date: Wed, 16 Jul 2025 16:25:56 +0800 Subject: [PATCH] feat: add template --- .github/ISSUE_TEMPLATE/docs.yml | 68 +++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/docs.yml diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml new file mode 100644 index 00000000..c896524e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -0,0 +1,68 @@ +name: Documentation Change Request +description: Suggest changes or improvements to the documentation +title: "[DOCS]: " +labels: ["documentation"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to help us improve our documentation! + + - type: dropdown + id: type + attributes: + label: Type of Documentation Change + options: + - Error/Typo fix + - Content update + - New documentation + - Translation + - Reorganization + - Other + validations: + required: true + + - type: input + id: page + attributes: + label: Documentation Page URL or Path + description: Please provide the URL or file path of the documentation page you're referring to. + placeholder: e.g., https://docs.dify.ai/getting-started or /getting-started.md + validations: + required: false + + - type: textarea + id: current + attributes: + label: Current Content + description: What does the documentation currently say? + placeholder: Paste the current content here... + validations: + required: false + + - type: textarea + id: suggestion + attributes: + label: Suggested Changes + description: What would you like to be changed or added? + placeholder: Describe your suggested changes... + validations: + required: true + + - type: textarea + id: reason + attributes: + label: Reason for Change + description: Why do you think this change would improve the documentation? + placeholder: Explain why this change would be helpful... + validations: + required: false + + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our contribution guidelines + options: + - label: I agree to follow Dify's documentation contribution guidelines + required: true \ No newline at end of file