Skip to content

Commit

Permalink
Fix bug report versions (#278)
Browse files Browse the repository at this point in the history
* version as string to preserve trailing zeros.

* changed code of conduct and bug report check to dropdown style instead of checkboxes

* commit suggestion

Co-authored-by: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com>

---------

Co-authored-by: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com>
  • Loading branch information
pauladkisson and CodyCBakerPhD authored Feb 15, 2024
1 parent 8d79304 commit 8723149
Showing 1 changed file with 21 additions and 12 deletions.
33 changes: 21 additions & 12 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ body:
attributes:
label: Python Version
options:
- 3.8
- 3.9
- 3.10
- 3.11
- 3.12
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
validations:
required: true
- type: textarea
Expand All @@ -78,13 +78,22 @@ body:
You can attach images or log files by clicking this area to highlight it and then dragging files in.
If GitHub upload is not working, you can also copy and paste the output into this section.
- type: checkboxes
id: terms
- type: dropdown
id: code_of_conduct
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/catalystneuro/roiextractors/blob/master/.github/CODE_OF_CONDUCT.rst)
description: Do you agree to follow our [Code of Conduct](https://github.com/catalystneuro/roiextractors/blob/master/.github/CODE_OF_CONDUCT.rst)?
options:
- "Yes"
validations:
required: true
- type: dropdown
id: duplicated_issue_check
attributes:
label: Duplicated Issue Check
description: Have you ensured this bug was not already [reported](https://github.com/catalystneuro/roiextractors/issues)?
options:
- label: I agree to follow this project's [Code of Conduct](https://github.com/catalystneuro/roiextractors/blob/master/.github/CODE_OF_CONDUCT.rst)
required: true
- label: Have you ensured this bug was not already [reported](https://github.com/catalystneuro/roiextractors/issues)?
required: true
- "No"
- "Yes"
validations:
required: true

0 comments on commit 8723149

Please sign in to comment.