Skip to content

Commit

Permalink
fix: Fix boolean options in issue template forms
Browse files Browse the repository at this point in the history
  • Loading branch information
FoxxMD committed Oct 10, 2024
1 parent 5dcaefc commit 601228a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 40 deletions.
20 changes: 3 additions & 17 deletions .github/ISSUE_TEMPLATE/02-feature-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,9 @@ body:
description: |
If the functionality involves changes to configuration files please provide an example here
render: json5
- type: dropdown
- type: checkboxes
attributes:
label: Will you help implement it?
description: Are you willing to contribute code towards completing this feature?
options:
- Yes
- No
default: 1
validations:
required: true
- type: dropdown
attributes:
label: Will you help test it?
description: Are you willing to help test preview builds for this feature?
options:
- Yes
- No
default: 0
validations:
required: true
- label: I am willing to contribute code towards completing this feature
- label: I am willing to help test preview builds for this feature
32 changes: 9 additions & 23 deletions .github/ISSUE_TEMPLATE/03-new-source-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ body:
label: API Available?
description: Does the service have an API or other protocol that multi-scrobbler can use to communicate? **Without this the likelyhood of implementation is very low.**
options:
- Yes
- No
- 'Yes'
- 'No'
default: 1
validations:
required: true
Expand All @@ -49,8 +49,8 @@ body:
label: Free To Use?
description: Is this service/software freely available or does it require purchasing/subscription?
options:
- Yes
- No
- 'Yes'
- 'No'
default: 1
validations:
required: true
Expand All @@ -59,30 +59,16 @@ body:
label: Willing to finance development?
description: If the software is **non-free** are you will to provide a paid account/subscription to multi-scrobbler developer's in order to facilitate development/testing?
options:
- Yes
- No
- 'Yes'
- 'No'
validations:
required: false
- type: dropdown
- type: checkboxes
attributes:
label: Will you help implement it?
description: Are you willing to contribute code towards completing this feature?
options:
- Yes
- No
default: 1
validations:
required: true
- type: dropdown
attributes:
label: Will you help test it?
description: Are you willing to help test preview builds for this feature?
options:
- Yes
- No
default: 0
validations:
required: true
- label: I am willing to contribute code towards completing this feature
- label: I am willing to help test preview builds for this feature
- type: textarea
attributes:
label: Additional Context
Expand Down

0 comments on commit 601228a

Please sign in to comment.