diff options
author | Pradyun Gedam <3275593+pradyunsg@users.noreply.github.com> | 2021-04-22 09:52:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-22 09:52:08 +0100 |
commit | 4ad20760c76952d9cd6a33ebe0282d63f0efe915 (patch) | |
tree | 7ac8ccdb59efbf8a606186f3f90d1408dac5938b | |
parent | 07eda18d6c4cf987ea57a2f9cf3deff9f0bf0105 (diff) | |
parent | 2c8ce42135c78af0cf0157b0602891b0cfb6e92b (diff) | |
download | python-setuptools-git-4ad20760c76952d9cd6a33ebe0282d63f0efe915.tar.gz |
Merge pull request #2649 from webknjaz/maintenance/issue-forms--deprecations
Drop deprecated `issue_body` from the forms
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug-report.yml | 1 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/documentation-report.yml | 34 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature-request.yml | 1 |
3 files changed, 16 insertions, 20 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 5f551a4b..73911ec8 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -7,7 +7,6 @@ title: '[BUG] ' labels: - bug - Needs Triage -issue_body: false # default: true, adds a classic WSYWIG textarea, if on body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/documentation-report.yml b/.github/ISSUE_TEMPLATE/documentation-report.yml index a947dad8..238ce896 100644 --- a/.github/ISSUE_TEMPLATE/documentation-report.yml +++ b/.github/ISSUE_TEMPLATE/documentation-report.yml @@ -5,8 +5,6 @@ description: Ask us about docs labels: - documentation - Needs Triage -# NOTE: issue body is enabled to allow screenshots -issue_body: true # default: true, adds a classic WSYWIG textarea, if on body: - type: markdown @@ -64,6 +62,22 @@ body: placeholder: Fedora 33, Firefox etc. +- type: textarea + attributes: + label: Additional Information + description: > + Describe how this improves the documentation, e.g. before/after + situation or screenshots. + + + **HINT:** You can paste https://gist.github.com links for larger files. + placeholder: >- + When the improvement is applied, it makes it more straightforward + to understand X. + validations: + required: true + + - type: checkboxes attributes: label: Code of Conduct @@ -74,20 +88,4 @@ body: options: - label: I agree to follow the PSF Code of Conduct required: true - - -- type: markdown - attributes: - value: > - - - ### Additional Information - - - Describe how this improves the documentation, e.g. before/after - situation or screenshots. - - - **HINT:** You can paste https://gist.github.com links for - larger files. ... diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index 7dec35a8..88ae6741 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -5,7 +5,6 @@ title: '[FR] ' labels: - enhancement - Needs Triage -issue_body: false # default: true, adds a classic WSYWIG textarea, if on body: - type: markdown |