From 781f9e8ccd874dae5d5ae29265997acbed9a0b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Wed, 1 Dec 2021 11:54:56 +0100 Subject: [PATCH] chg: make all templates yml --- .github/ISSUE_TEMPLATE/bug_fix_template.yml | 3 +-- .github/ISSUE_TEMPLATE/config.yml | 3 +++ .../documentation_change_template.md | 21 ------------------- .../documentation_change_template.yml | 13 ++++++++++++ .github/ISSUE_TEMPLATE/freetext.yml | 17 +++++++++++++++ 5 files changed, 34 insertions(+), 23 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/documentation_change_template.md create mode 100644 .github/ISSUE_TEMPLATE/documentation_change_template.yml create mode 100644 .github/ISSUE_TEMPLATE/freetext.yml diff --git a/.github/ISSUE_TEMPLATE/bug_fix_template.yml b/.github/ISSUE_TEMPLATE/bug_fix_template.yml index 9b742880..602372c2 100644 --- a/.github/ISSUE_TEMPLATE/bug_fix_template.yml +++ b/.github/ISSUE_TEMPLATE/bug_fix_template.yml @@ -2,8 +2,7 @@ name: Bug Report description: File a bug report title: "[Bug]: " labels: ["Bug", "triage"] -assignees: - - octocat + body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 499f57f1..38d5f70b 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,6 +1,9 @@ blank_issues_enabled: false contact_links: + - name: Discussions + url: https://github.com/Lookyloo/lookyloo/discussions + about: For more general questions. - name: Lookyloo Community Support url: https://gitter.im/lookyloo-app/community about: Please ask and answer questions here. diff --git a/.github/ISSUE_TEMPLATE/documentation_change_template.md b/.github/ISSUE_TEMPLATE/documentation_change_template.md deleted file mode 100644 index 7cc3411e..00000000 --- a/.github/ISSUE_TEMPLATE/documentation_change_template.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: Documentation -about: Suggest an improvement/change to the docs -labels: 'documentation' - ---- - - -## Describe the change -*(A clear and concise description of what you want to happen)* - - -## How will this impact users? - - - -## Additional context - - -1. - diff --git a/.github/ISSUE_TEMPLATE/documentation_change_template.yml b/.github/ISSUE_TEMPLATE/documentation_change_template.yml new file mode 100644 index 00000000..596f4450 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation_change_template.yml @@ -0,0 +1,13 @@ +name: Documentation +description: Suggest an improvement/change to the docs +title: "[Doc]: " +labels: ['documentation'] + +body: + - type: textarea + id: doc + attributes: + label: Describe the change + description: What is missing or unclear? + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/freetext.yml b/.github/ISSUE_TEMPLATE/freetext.yml new file mode 100644 index 00000000..da177c1a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/freetext.yml @@ -0,0 +1,17 @@ +name: Notes +description: Freetext form, use it for quick notes and remarks that don't fit anywhere else. +title: "[Notes]: " +labels: ["Notes", "help wanted"] + +body: + - type: markdown + attributes: + value: | + Tell us what you think! + - type: textarea + id: notes + attributes: + label: Notes + description: Write anything you want to say. + validations: + required: true