-
Notifications
You must be signed in to change notification settings - Fork 111
docs: Add issue templates for bug reports and feature requests #1589
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
fd325dc
c9c73f2
8450855
1046eff
07a782e
7b6a412
4b61eb8
07c83eb
54100d7
b8d2bcb
246d3f6
32e0799
3920e08
2429542
da555bb
79b055e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| name: 🐛 Bug report | ||
| description: Report a problem or unexpected behavior | ||
| labels: [bug] | ||
| body: | ||
| - type: dropdown | ||
| id: component | ||
| attributes: | ||
| label: Component | ||
| description: Which tool or component are you having problems with? | ||
| options: | ||
| - c2pa-rs | ||
| - c2patool | ||
| - c2pa-c | ||
| - Other | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: component-other | ||
| attributes: | ||
| label: If Other, please specify | ||
| description: Which component are you using? | ||
| placeholder: e.g., Python bindings, Java SDK, etc. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could we use placeholders that match what we have? Eg. C bindings, docs? |
||
| - type: input | ||
| id: version | ||
| attributes: | ||
| label: Version | ||
| description: Which version are you using? | ||
| placeholder: e.g., v0.71.0 | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: platform | ||
| attributes: | ||
| label: Platform | ||
| description: Which platform are you using? | ||
| options: | ||
| - Linux | ||
| - macOS | ||
| - Windows | ||
| - iOS | ||
| - Android | ||
| - Other | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: what-happened | ||
ribhavh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| attributes: | ||
| label: What happened? | ||
| description: Describe what went wrong. Please attach example files if possible. | ||
| placeholder: Describe the actual behavior you observed. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: expected-behavior | ||
| attributes: | ||
| label: What did you expect to happen? | ||
| description: Describe what you expected to happen instead. | ||
| placeholder: Describe the expected behavior. | ||
| validations: | ||
| required: true | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| blank_issues_enabled: false | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hm, I think it's still useful to have blank issues or at least a way to report general tasks/improvements that aren't necessarily features. Not a blocker but just something to think about. For example:
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1 |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| name: 💡 Feature request | ||
| description: Suggest an idea for improvement | ||
| labels: [enhancement] | ||
| body: | ||
| - type: textarea | ||
| id: idea | ||
| attributes: | ||
| label: Describe your idea | ||
| description: What would make the project better? | ||
| placeholder: Describe your feature request here. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need to add a question about what is the target platform? |
||
| validations: | ||
| required: true | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| name: 💬 Other | ||
| description: General inquiries, questions, or discussions | ||
| labels: [question] | ||
| body: | ||
| - type: textarea | ||
| id: details | ||
| attributes: | ||
| label: Details | ||
| description: Tell us what's on your mind. | ||
| placeholder: Describe your inquiry, question, or feedback here. | ||
| validations: | ||
| required: true |
Uh oh!
There was an error while loading. Please reload this page.