diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index f51d577f11..3885cf68a3 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -116,11 +116,12 @@ body: validations: required: false - - type: markdown + - type: textarea + id: acceptance_criteria attributes: - value: | - ### Acceptance Criteria - + label: "Acceptance Criteria" + description: Do not edit the text area below. + value: | - [ ] Ensure new code is unit tested, and check code coverage is at least 90%. - [ ] Create related issue in taipy-doc for documentation and Release Notes. diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index af96e8bb34..9441ebf49b 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -41,15 +41,16 @@ body: validations: required: false - - type: markdown + - type: textarea + id: acceptance_criteria attributes: - value: | - ### Acceptance Criteria - + label: "Acceptance Criteria" + description: Do not edit the text area below. + value: | - [ ] Ensure new code is unit tested, and check code coverage is at least 90%. - [ ] Create related issue in taipy-doc for documentation and Release Notes. - [ ] Check if a new demo could be provided based on this, or if legacy demos could be benefit from it. - - [ ] Ensure any change is well documented. + - [ ] Ensure any change is well documented. - type: checkboxes id: terms_checklist_feature diff --git a/.github/ISSUE_TEMPLATE/refactor-code.yml b/.github/ISSUE_TEMPLATE/refactor-code.yml index 5f63f6c76f..4e8acd8f04 100644 --- a/.github/ISSUE_TEMPLATE/refactor-code.yml +++ b/.github/ISSUE_TEMPLATE/refactor-code.yml @@ -15,12 +15,13 @@ body: description: "Describe what improvements can be made(performance, API...) in the codebase without introducing breaking changes." validations: required: true - - - type: markdown + + - type: textarea + id: acceptance_criteria attributes: + label: "Acceptance Criteria" + description: Do not edit the text area below. value: | - ### Acceptance Criteria - - [ ] Ensure new code is unit tested, and check code coverage is at least 90%. - [ ] Propagate any change on the demos and run all of them to ensure there is no breaking change. - [ ] Ensure any change is well documented.