Skip to content

Commit 0b5b840

Browse files
authored
Merge pull request #2541 from image-rs/issue-2226
Add an issue template for 'Upstream' issues
2 parents add9be2 + 6ca745d commit 0b5b840

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: Format/Dependency issue
2+
description: An issue that relies on being fixed upstream
3+
title: "[upstream] "
4+
labels: ["dependency-tracked"]
5+
body:
6+
- type: markdown
7+
id: explanation
8+
attributes:
9+
value: |
10+
If this is a bug in a dependency that can be fixed in a minor version,
11+
please file it there instead. If you're not sure or if that fix
12+
requires changes in `image` (including using new APIs, increasing the
13+
minimum version) then file it in *both*. If you're unsure about the
14+
affected dependency leave the link below blank and a maintainer will
15+
forward it appropriately.
16+
17+
- type: textarea
18+
id: affected-functionality
19+
attributes:
20+
label: Affected functionality
21+
description: Which part of image is affected?
22+
placeholder: The (encoder/decoder/dependency) should …
23+
validations:
24+
required: true
25+
26+
- type: checkboxes
27+
id: operating-systems
28+
attributes:
29+
label: Which operating systems does this bug appear on?
30+
description: You may select more than one.
31+
multiple: true
32+
options:
33+
- label: macOS
34+
- label: Windows
35+
- label: Linux
36+
37+
- type: textarea
38+
id: reproduction
39+
attributes:
40+
label: Reproduction
41+
description: How may the fix be validated?
42+
placeholder: The decoder is supposed to … bug instead …
43+
validations:
44+
required: false
45+
46+
- type: input
47+
id: upstream-links
48+
attributes:
49+
label: Upstream issue link(s)
50+
description: Paste the URL(s) to the issue(s) in the upstream repository, if known.
51+
placeholder: https://github.com/other/repo/issues/123
52+
validations:
53+
required: false
54+
55+
- type: textarea
56+
id: tracking-notes
57+
attributes:
58+
label: Tracking notes
59+
description: Further summary of relevant discussion, workarounds, or other relevant notes.
60+
placeholder: Add context/workarounds here.
61+
validations:
62+
required: false

0 commit comments

Comments
 (0)