diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2021-08-10 14:35:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 14:35:36 +0200 |
commit | c5baba065c480a1bb83388233f2f35104dd4a2f0 (patch) | |
tree | 882bbb1e1ea8b42197c47764d347c04796c98b93 | |
parent | 1a10acb997d2c454bef2c787faecde429c0c977b (diff) | |
parent | f43a8f0eda75195fb9c00637d0833ad53b8db587 (diff) | |
download | rneovim-c5baba065c480a1bb83388233f2f35104dd4a2f0.tar.gz rneovim-c5baba065c480a1bb83388233f2f35104dd4a2f0.tar.bz2 rneovim-c5baba065c480a1bb83388233f2f35104dd4a2f0.zip |
Merge pull request #15329 from dundargoc/github/bug-template/make-behavior-mandatory
ci: make all questions mandatory in bug template
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9890636aea..e9384c1982 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -45,16 +45,25 @@ body: description: | Steps to reproduce using `nvim -u NORC` and/or `nvim -u NONE` (please test both). If you are reporting build failures, please list the exact sequence of steps including all CMake flags (if any). + validations: + required: true - type: input attributes: label: "Vim" description: "Does Vim behave differently when called with `vim -u DEFAULTS`? (Please add the specific version, including patch level, of Vim that you tested.)" + validations: + required: true - type: textarea attributes: label: "Expected behavior" description: "A description of the behavior you expected. May optionally include logs, images, or videos." + validations: + required: true + - type: textarea attributes: label: "Actual behavior" + validations: + required: true |