Skip to content

Commit d6c0cc0

Browse files
authored
Add fundable template (#2310)
* add template for fundable issue * Rename templates to be explicit about order * pre-commit
1 parent 29e4ce1 commit d6c0cc0

File tree

5 files changed

+91
-0
lines changed

5 files changed

+91
-0
lines changed
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
name: Fundable
2+
description: Propose a task that would require external funding and/or resources.
3+
labels: [fundable]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
With this template you can propose a complex task that would require external
9+
funding and/or resources. This is usually the case for organization-wide changes,
10+
large infrastructure improvements or low-level packaging work (e.g. compilers).
11+
12+
Please refrain from using this template if you don't have the necessary details to
13+
fill in all the required fields below.
14+
15+
If you just have a feature request, open a regular issue.
16+
17+
- type: checkboxes
18+
id: submitted
19+
attributes:
20+
label: This fundable has not been submitted yet.
21+
description: |
22+
I [searched conda-forge](https://github.com/search?type=code&q=org%3Aconda-forge+label%3Afundable)
23+
for similar items and could not find issues marked as 'fundable'.
24+
options:
25+
- label: This fundable has not been submitted yet.
26+
required: true
27+
28+
- type: textarea
29+
id: motivation
30+
attributes:
31+
label: Motivation
32+
description: |
33+
Please describe why this idea is interesting or important.
34+
validations:
35+
required: true
36+
37+
- type: textarea
38+
id: result
39+
attributes:
40+
label: Expected result
41+
description: |
42+
Please describe how the final result would look like.
43+
validations:
44+
required: true
45+
46+
- type: textarea
47+
id: items
48+
attributes:
49+
label: Work items
50+
description: |
51+
Enumerate the necessary steps to achieve the intended result.
52+
placeholder: |
53+
- [ ] ...
54+
- [ ] ...
55+
- [ ] ...
56+
validations:
57+
required: true
58+
59+
- type: textarea
60+
id: xrefs
61+
attributes:
62+
label: References
63+
description: |
64+
Please take some time to collect any useful references (issues, PRs, code blocks...)
65+
that might apply to this task.
66+
placeholder: |
67+
- [ ] ...
68+
- [ ] ...
69+
- [ ] ...
70+
validations:
71+
required: true
72+
73+
- type: textarea
74+
id: skills
75+
attributes:
76+
label: Skills / personnel
77+
description: |
78+
State which skills would be needed to complete this task.
79+
If you have specific personnel in mind, write a brief introduction for them.
80+
validations:
81+
required: false
82+
83+
- type: textarea
84+
id: costs
85+
attributes:
86+
label: Estimated costs and/or resources needed (optional)
87+
description: |
88+
If there are associated costs or resources needed, please state them here. This would help
89+
funding agencies estimate the budget needed to tackle this proposal.
90+
validations:
91+
required: false

0 commit comments

Comments
 (0)