Skip to content

Commit 6d9e4b9

Browse files
Add issue template for containerization (#102)
Matches templates made in container here apple/container#152. Points questions to the container Discussions. Signed-off-by: Kathryn Baldauf <k_baldauf@apple.com>
1 parent 28199a7 commit 6d9e4b9

File tree

3 files changed

+98
-0
lines changed

3 files changed

+98
-0
lines changed

.github/ISSUE_TEMPLATE/01-bug.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: checkboxes
11+
id: prereqs
12+
attributes:
13+
label: I have done the following
14+
description: Select that you have completed the following prerequisites.
15+
options:
16+
- label: I have searched the existing issues
17+
required: true
18+
- label: If possible, I've reproduced the issue using the 'main' branch of this project
19+
required: false
20+
- type: textarea
21+
id: reproduce
22+
attributes:
23+
label: Steps to reproduce
24+
description: Explain how to reproduce the incorrect behavior.
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: what-happened
29+
attributes:
30+
label: Current behavior
31+
description: A concise description of what you're experiencing.
32+
validations:
33+
required: true
34+
- type: textarea
35+
id: expected
36+
attributes:
37+
label: Expected Behavior
38+
description: A concise description of what you expected to happen.
39+
validations:
40+
required: true
41+
- type: textarea
42+
attributes:
43+
label: Environment
44+
description: |
45+
examples:
46+
- **OS**: MacOS 26 Beta 1
47+
- **swift**: Apple Swift version 6.2
48+
- **xcode**: Xcode 26 Beta 17A5241e
49+
value: |
50+
- OS:
51+
- swift:
52+
- xcode:
53+
render: markdown
54+
validations:
55+
required: true
56+
- type: textarea
57+
id: logs
58+
attributes:
59+
label: Relevant log output
60+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
61+
render: shell
62+
- type: checkboxes
63+
id: terms
64+
attributes:
65+
label: Code of Conduct
66+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/apple/containerization/blob/main/CONTRIBUTING.md#code-of-conduct).
67+
options:
68+
- label: I agree to follow this project's Code of Conduct
69+
required: true
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Feature or Enhancement request
2+
description: File a request for a feature or enhancement
3+
title: "[Request]: "
4+
labels: ["feature", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for contributing to the container project!
10+
- type: textarea
11+
id: request
12+
attributes:
13+
label: Feature or enhancement request details
14+
description: Describe your proposed feature or enhancement. Code samples that show what's missing, or what new capabilities will be possible, are very helpful! Provide links to existing issues or external references/discussions, if appropriate.
15+
validations:
16+
required: true
17+
- type: checkboxes
18+
id: terms
19+
attributes:
20+
label: Code of Conduct
21+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/apple/containerization/blob/main/CONTRIBUTING.md#code-of-conduct).
22+
options:
23+
- label: I agree to follow this project's Code of Conduct
24+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: containerization community support
4+
url: https://github.com/apple/container/discussions
5+
about: Please ask and answer questions here.

0 commit comments

Comments
 (0)