diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b41924053..6d5ea7c74 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,26 +1,37 @@ -name: Bug Report -description: Report a bug/issue that you found in the SVGs, CSS files, etc. -title: '[BUG] ' -labels: [bug] -body: - - type: textarea - id: description - attributes: - label: Bug description - description: Short description of the bug that you found. Provide images/code if applicable. - validations: - required: true - - type: textarea - id: howtoreplicate - attributes: - label: Possible fixes or solutions - description: List any possible fixes/suggestions that you have in mind that could solve this issue. - validations: - required: true - - type: textarea - id: extrainformation - attributes: - label: Additional information - description: Is there anything else we should know about this bug? - validations: - required: false +name: Bug Report +description: Report a bug/issue that you found in the SVGs, CSS files, etc. +title: '[BUG] ' +labels: [bug] +body: + - type: markdown + attributes: + value: "## Before you continue, please search our open/closed issues to see if a similar issue has been addressed." + + - type: checkboxes + attributes: + label: I have searched through the issues and didn't find my problem. + options: + - label: Confirm + required: true + + - type: textarea + id: description + attributes: + label: Bug description + description: Short description of the bug that you found. Provide images/code if applicable. + validations: + required: true + + - type: textarea + id: howtoreplicate + attributes: + label: Possible fixes or solutions + description: List any possible fixes/suggestions that you have in mind that could solve this issue. + validations: + required: true + + - type: textarea + id: extrainformation + attributes: + label: Additional information + description: Is there anything else we should know about this bug? diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index d0815fbe0..ce99b04e5 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,26 +1,35 @@ -name: Feature Request -description: Requesting a new feature or changes to an existing feature -title: '[FEATURE REQUEST] ' -labels: [enhancement] -body: - - type: textarea - id: currentproblem - attributes: - label: Problem - description: Tell us about the problem. - validations: - required: true - - type: textarea - id: possiblesolution - attributes: - label: Possible Solution - description: If you have an idea, please tell us what might solve the above problem. - validations: - required: true - - type: textarea - id: extrainformation - attributes: - label: Additional information - description: Is there anything else we should know about this feature request? - validations: - required: false +name: Feature Request +description: Requesting a new feature or changes to an existing feature +title: '[FEATURE REQUEST] ' +labels: [enhancement] +body: + - type: markdown + attributes: + value: "## Before you continue, please search our open/closed issues to see if a similar issue has been addressed." + + - type: checkboxes + attributes: + label: I have searched through the issues and didn't find my problem. + options: + - label: Confirm + required: true + + - type: textarea + id: currentproblem + attributes: + label: Problem + description: Tell us about the problem and its negative impacts. + validations: + required: true + + - type: textarea + id: possiblesolution + attributes: + label: Possible Solution + description: If you have an idea, please tell us what might solve the above problem and the benefits it provides. + + - type: textarea + id: extrainformation + attributes: + label: Additional information + description: Is there anything else we should know about this feature request? diff --git a/.github/ISSUE_TEMPLATE/icon_request.yml b/.github/ISSUE_TEMPLATE/icon_request.yml index 32637c145..42b9370f1 100644 --- a/.github/ISSUE_TEMPLATE/icon_request.yml +++ b/.github/ISSUE_TEMPLATE/icon_request.yml @@ -1,26 +1,37 @@ -name: Icon Request -description: Requesting a new icon or changes to an existing icon -title: '[ICON REQUEST]: ' -labels: ["request:icon"] -body: - - type: input - id: about - attributes: - label: About the icon - description: Short description of why you think this icon belongs in our project. - validations: - required: true - - type: textarea - id: links - attributes: - label: Links and sources - description: Provide links to the icon's official website/repository/anywhere that shows what the technology is about, and its official logo. If available, also provide some resources where the icon/SVG can be found (Font Awesome, Icomoon, etc.). - validations: - required: true - - type: textarea - id: extrainformation - attributes: - label: Additional information - description: Is there anything else we should know about this icon? - validations: - required: false +name: Icon Request +description: Requesting a new icon or changes to an existing icon +title: '[ICON REQUEST]: ' +labels: ["request:icon"] +body: + - type: markdown + attributes: + value: "## Before you continue, please search our open/closed issues to see if a similar issue has been addressed." + + - type: checkboxes + attributes: + label: I have searched through the issues and didn't find my problem. + options: + - label: Confirm + required: true + + - type: input + id: about + attributes: + label: About the icon + description: Short description of why you think this icon belongs in our project. + validations: + required: true + + - type: textarea + id: links + attributes: + label: Links and sources + description: Provide links to the icon's official website/repository/anywhere that shows what the technology is about, and its official logo. If available, also provide some resources where the icon/SVG can be found (Font Awesome, Icomoon, etc.). + validations: + required: true + + - type: textarea + id: extrainformation + attributes: + label: Additional information + description: Is there anything else we should know about this icon? diff --git a/.github/ISSUE_TEMPLATE/other.yml b/.github/ISSUE_TEMPLATE/other.yml index 92c70aa44..2033b4e71 100644 --- a/.github/ISSUE_TEMPLATE/other.yml +++ b/.github/ISSUE_TEMPLATE/other.yml @@ -1,22 +1,29 @@ -name: Other -description: Use this for any other issues. Do not create blank issues -title: "[OTHER] " -labels: ["awaiting triage"] -body: - - type: markdown - attributes: - value: "# Other issue" - - type: textarea - id: issuedescription - attributes: - label: What would you like to share? - description: Provide a clear and concise explanation of your issue. - validations: - required: true - - type: textarea - id: extrainfo - attributes: - label: Additional information - description: Is there anything else we should know about this issue? - validations: - required: false +name: Other +description: Use this for any other issues. Do not create blank issues +title: "[OTHER] " +labels: ["awaiting triage"] +body: + - type: markdown + attributes: + value: "## Before you continue, please search our open/closed issues to see if a similar issue has been addressed." + + - type: checkboxes + attributes: + label: I have searched through the issues and didn't find my problem. + options: + - label: Confirm + required: true + + - type: textarea + id: issuedescription + attributes: + label: What would you like to share? + description: Provide a clear and concise explanation of your issue. + validations: + required: true + + - type: textarea + id: extrainfo + attributes: + label: Additional information + description: Is there anything else we should know about this issue? diff --git a/.github/PULL_REQUEST_TEMPLATE/new_icon.md b/.github/PULL_REQUEST_TEMPLATE/new_icon.md index 58e458ef8..4d0fc6465 100644 --- a/.github/PULL_REQUEST_TEMPLATE/new_icon.md +++ b/.github/PULL_REQUEST_TEMPLATE/new_icon.md @@ -1,17 +1,17 @@ -## Double check these details before you open a PR - - -- [] PR does not match another non-stale PR currently opened -- [] PR name matches the format *new icon: Icon name (versions separated by comma)*. More details [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#overview) -- [] PR's base is the `develop` branch. -- [] Your icons are inside a folder as seen [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#organizational-guidelines) -- [] SVG matches the standards laid out [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#svgStandards) -- [] A new object is added in the `devicon.json` file as seen [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#-updating-the-deviconjson-) - - - -**This PR closes NONE** - - -## Link to prove your SVG is correct and up-to-date. - +## Double check these details before you open a PR + + +- [ ] PR does not match another non-stale PR currently opened +- [ ] PR name matches the format *new icon: Icon name (versions separated by comma)*. More details [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#overview) +- [ ] PR's base is the `develop` branch. +- [ ] Your icons are inside a folder as seen [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#organizational-guidelines) +- [ ] SVG matches the standards laid out [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#svgStandards) +- [ ] A new object is added in the `devicon.json` file as seen [here](https://github.com/devicons/devicon/blob/develop/CONTRIBUTING.md#-updating-the-deviconjson-) + + + +**This PR closes NONE** + + +## Link to prove your SVG is correct and up-to-date. + diff --git a/docs/wiki/issue_form.png b/docs/wiki/issue_form.png index bd08f3f3f..13b46b187 100644 Binary files a/docs/wiki/issue_form.png and b/docs/wiki/issue_form.png differ