From ebe8e1e045cae8c618e0df61d148fc428ceccd01 Mon Sep 17 00:00:00 2001 From: Daniel <71837281+darmiel@users.noreply.github.com> Date: Mon, 13 Mar 2023 23:26:30 +0100 Subject: [PATCH] docs: updated issue template --- .../ISSUE_TEMPLATE/✨-request-new-project.md | 18 ---------- .../✨-request-new-project.yaml | 30 ++++++++++++++++ ...-mistake--e--g--spelling--grammar------.md | 19 ---------- .../ISSUE_TEMPLATE/🔍-report-mistake.yaml | 36 +++++++++++++++++++ .../ISSUE_TEMPLATE/🚩-remove-project.yaml | 30 ++++++++++++++++ ...--e--g--inactive--broken--harmful------.md | 20 ----------- 6 files changed, 96 insertions(+), 57 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/✨-request-new-project.md create mode 100644 .github/ISSUE_TEMPLATE/✨-request-new-project.yaml delete mode 100644 .github/ISSUE_TEMPLATE/🔍-report-a-mistake--e--g--spelling--grammar------.md create mode 100644 .github/ISSUE_TEMPLATE/🔍-report-mistake.yaml create mode 100644 .github/ISSUE_TEMPLATE/🚩-remove-project.yaml delete mode 100644 .github/ISSUE_TEMPLATE/🚩-report-a-project--e--g--inactive--broken--harmful------.md diff --git a/.github/ISSUE_TEMPLATE/✨-request-new-project.md b/.github/ISSUE_TEMPLATE/✨-request-new-project.md deleted file mode 100644 index a323d80..0000000 --- a/.github/ISSUE_TEMPLATE/✨-request-new-project.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -name: "✨ Request new project" -about: Do you have a tool that is not yet listed and want it to be listed in the repo? -title: "[REQUEST] " -labels: request -assignees: TomRomeo, darmiel - ---- - -### Project Website - -< Link to the project (e.g. GitHub) > - -### Project Description - -< Short description of the project > - - diff --git a/.github/ISSUE_TEMPLATE/✨-request-new-project.yaml b/.github/ISSUE_TEMPLATE/✨-request-new-project.yaml new file mode 100644 index 0000000..18e0c01 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/✨-request-new-project.yaml @@ -0,0 +1,30 @@ +name: "✨ Request new project" +description: > + Do you have a tool that is not yet listed and want it to be listed in the repo? + +title: "[REQEUST] " +labels: request +assignees: TomRomeo, darmiel + +body: + - type: markdown + attributes: + value: "> Thank you so much for your help to make this list even better! 💖" + + - type: input + id: project-website + attributes: + label: Project Website + description: Link to the project (e.g. GitHub) + placeholder: ex. https://github.com/awesome-jellyfin/awesome-jellyfin + validations: + required: true + + - type: textarea + id: project-description + attributes: + label: Project Description + description: Short description of the project + validations: + required: true + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/🔍-report-a-mistake--e--g--spelling--grammar------.md b/.github/ISSUE_TEMPLATE/🔍-report-a-mistake--e--g--spelling--grammar------.md deleted file mode 100644 index 31dd5a8..0000000 --- a/.github/ISSUE_TEMPLATE/🔍-report-a-mistake--e--g--spelling--grammar------.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: "\U0001F50D Report a mistake (e. g. Spelling, Grammar, ...)" -about: Did you find an error in the list? -title: "[BUG] " -labels: bug -assignees: TomRomeo, darmiel - ---- - -### What's the problem? - -< Briefly describe the error / suggest changes > - -### Where's the problem? - -> Please enter the Line Number of the problem to make it easier for us to find the problem. -> You can find the line numbers [here](https://github.com/awesome-jellyfin/awesome-jellyfin/blob/main/README.md?plain=1). You can click on the line numbers to get the URL for the clicked line. - - diff --git a/.github/ISSUE_TEMPLATE/🔍-report-mistake.yaml b/.github/ISSUE_TEMPLATE/🔍-report-mistake.yaml new file mode 100644 index 0000000..30437f9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/🔍-report-mistake.yaml @@ -0,0 +1,36 @@ +name: "\U0001F50D Report a mistake (e. g. Spelling, Grammar, ...)" +description: > + Did you find an error in the list? + +title: "[BUG] " +labels: bug +assignees: TomRomeo, darmiel + +body: + - type: markdown + attributes: + value: "> Thank you so much for your help to make this list even better! 💖" + + - type: textarea + id: what-problem + attributes: + label: "What's the problem?" + description: Briefly describe the error / suggest changes + placeholder: "wrote 'Jelyfin' instead of 'Jellyfin'" + validations: + required: true + + - type: input + id: where-problem + attributes: + label: "Where's the problem?" + description: Line Number of the problem + placeholder: "ex. https://github.com/awesome-jellyfin/awesome-jellyfin/blob/main/README.md?plain=1#L20" + validations: + required: true + + - type: markdown + attributes: + value: | + > Please enter the Line Number of the problem to make it easier for us to find the problem. + > You can find the line numbers [here](https://github.com/awesome-jellyfin/awesome-jellyfin/blob/main/README.md?plain=1). You can click on the line numbers to get the URL for the clicked line. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/🚩-remove-project.yaml b/.github/ISSUE_TEMPLATE/🚩-remove-project.yaml new file mode 100644 index 0000000..6526655 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/🚩-remove-project.yaml @@ -0,0 +1,30 @@ +name: "\U0001F6A9 Report a project (e. g. Inactive, Broken, Harmful, ...)" +description: > + Did you find a project, which shouldn't be on the list anymore? + Are you a maintainer of one of the listed projects and want it removed? + +title: "[REMOVAL] " +labels: removal +assignees: TomRomeo, darmiel + +body: + - type: markdown + attributes: + value: "> Thank you so much for your help to make this list even better! 💖" + + - type: input + id: affected-project + attributes: + label: Affected Project + description: Which project should be removed? + validations: + required: true + + - type: textarea + id: reason-for-removal + attributes: + label: Reason for removal + description: Why should this project be removed? + validations: + required: true + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/🚩-report-a-project--e--g--inactive--broken--harmful------.md b/.github/ISSUE_TEMPLATE/🚩-report-a-project--e--g--inactive--broken--harmful------.md deleted file mode 100644 index aac7229..0000000 --- a/.github/ISSUE_TEMPLATE/🚩-report-a-project--e--g--inactive--broken--harmful------.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: "\U0001F6A9 Report a project (e. g. Inactive, Broken, Harmful, ...)" -about: Did you find a project, which shouldn't be on the list anymore because it's - broken, harmful, ...? Are you a maintainer of one of the listed projects and want - it removed? -title: "[REMOVAL] " -labels: removal -assignees: TomRomeo, darmiel - ---- - -### Affected project - -< Which project should be removed? > - -### Reason for removal - -< Why should this project be removed? > - -