Merge pull request #10625 from Homebrew/revert-10624-revert-10607-update-issue-templates

.github/ISSUE_TEMPLATE/{bug,feature}.yml: update syntax.
This commit is contained in:
Nanda H Krishna 2021-02-20 00:36:43 +05:30 committed by GitHub
commit 63175498ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 6 deletions

View File

@ -2,37 +2,43 @@ name: New issue for Reproducible Bug
about: "If you're sure it's reproducible and not just your machine: submit an issue so we can investigate." about: "If you're sure it's reproducible and not just your machine: submit an issue so we can investigate."
labels: bug labels: bug
issue_body: false issue_body: false
inputs: body:
- type: description - type: markdown
attributes: attributes:
value: Please note we will close your issue without comment if you do not fill out the issue checklist below and provide ALL the requested information. If you repeatedly fail to use the issue template, we will block you from ever submitting issues to Homebrew again. value: Please note we will close your issue without comment if you do not fill out the issue checklist below and provide ALL the requested information. If you repeatedly fail to use the issue template, we will block you from ever submitting issues to Homebrew again.
- type: textarea - type: textarea
attributes: attributes:
label: "`brew config` output" label: "`brew config` output"
validations:
required: true required: true
- type: textarea - type: textarea
attributes: attributes:
label: "`brew doctor` output" label: "`brew doctor` output"
validations:
required: true required: true
- type: checkboxes - type: checkboxes
attributes: attributes:
description: Please verify that you've followed these steps description: Please verify that you've followed these steps
choices: options:
- label: The `brew doctor` above contains no "Warning" lines. - label: The `brew doctor` above contains no "Warning" lines.
required: true required: true
- type: textarea - type: textarea
attributes: attributes:
label: What were you trying to do (and why)? label: What were you trying to do (and why)?
validations:
required: true required: true
- type: textarea - type: textarea
attributes: attributes:
label: What happened (include all command output)? label: What happened (include all command output)?
validations:
required: true required: true
- type: textarea - type: textarea
attributes: attributes:
label: What did you expect to happen? label: What did you expect to happen?
validations:
required: true required: true
- type: textarea - type: textarea
attributes: attributes:
label: Step-by-step reproduction instructions (by running `brew` commands) label: Step-by-step reproduction instructions (by running `brew` commands)
validations:
required: true required: true

View File

@ -2,26 +2,30 @@ name: New issue for Feature Suggestion
about: Request our thoughts on your suggestion for a new feature for Homebrew. about: Request our thoughts on your suggestion for a new feature for Homebrew.
labels: features labels: features
issue_body: false issue_body: false
inputs: body:
- type: description - type: markdown
attributes: attributes:
value: Please note we will close your issue without comment if you do not fill out the issue checklist below and provide ALL the requested information. If you repeatedly fail to use the issue template, we will block you from ever submitting issues to Homebrew again. value: Please note we will close your issue without comment if you do not fill out the issue checklist below and provide ALL the requested information. If you repeatedly fail to use the issue template, we will block you from ever submitting issues to Homebrew again.
- type: textarea - type: textarea
attributes: attributes:
label: Provide a detailed description of the proposed feature label: Provide a detailed description of the proposed feature
validations:
required: true required: true
- type: textarea - type: textarea
attributes: attributes:
label: What is the motivation for the feature? label: What is the motivation for the feature?
validations:
required: true required: true
- type: textarea - type: textarea
attributes: attributes:
label: How will the feature be relevant to at least 90% of Homebrew users? label: How will the feature be relevant to at least 90% of Homebrew users?
validations:
required: true required: true
- type: textarea - type: textarea
attributes: attributes:
label: What alternatives to the feature have been considered? label: What alternatives to the feature have been considered?
validations:
required: true required: true
- type: description - type: markdown
attributes: attributes:
value: We will close this issue or ask you to create a pull-request if it's something the maintainers are not actively planning to work on. value: We will close this issue or ask you to create a pull-request if it's something the maintainers are not actively planning to work on.