-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2072 from smartdevicelink/bugfix/issue-2071-githu…
…b-forms Add Github issue forms
- Loading branch information
Showing
5 changed files
with
120 additions
and
23 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Best Practice | ||
description: Report a best practice issue, such as a language feature or README update. | ||
labels: ["needs triage", "best practice"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Hello 👋 | ||
If this issue involves a defect with the library, please file a Bug Report issue instead. If this is an issue with a recommended README / documentation update or a language update. | ||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Description | ||
description: Summarize the problem. Attach any relevant links or | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
labels: ["needs triage", "bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Hello 👋 | ||
Thank you for filling out a bug report. We'll respond as quickly as we can. The more information you provide, the more likely we are to be able to diagnose the problem. If you have something else to discuss that doesn't fit this template, try our [Slack](https://slack.smartdevicelink.com/). | ||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Bug Summary | ||
description: Summarize the problem. Attach any relevant crash reports or test apps as well. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: repro-steps | ||
attributes: | ||
label: Reproduction Steps | ||
value: | | ||
1. [Step 1] | ||
2. [Step 2] | ||
3. [Step 3] | ||
Expected Behavior: | ||
Observed Behavior: | ||
validations: | ||
required: true | ||
- type: input | ||
id: ios-version | ||
attributes: | ||
label: iOS Version(s) | ||
placeholder: 15.1.3 | ||
validations: | ||
required: false | ||
- type: input | ||
id: sdl-ios-version | ||
attributes: | ||
label: sdl_ios Version | ||
placeholder: 7.3.0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: testing-against | ||
attributes: | ||
label: Testing Environment(s) | ||
description: | | ||
For Example: | ||
- Ford TDK 3.4 (19286_DEVTEST) | ||
- Manticore v2.9.0 (See top of the open Manticore screen) | ||
- SDL Core v8.0.0 + Generic_HMI v0.11.0 | ||
placeholder: | | ||
For Example: | ||
- Ford TDK 3.4 (19286_DEVTEST) | ||
- Manticore v2.9.0 (See top of the open Manticore screen) | ||
- SDL Core v8.0.0 + Generic_HMI v0.11.0 | ||
render: markdown | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy-paste any relevant log output. This will automatically be rendered as code. | ||
render: shell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Proposal (For Livio Internal Use ONLY) | ||
description: Create a proposal feature issue | ||
title: "[SDL XXXX] TITLE" | ||
labels: proposal | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Hello 👋 | ||
If you are not a Livio project manager, this is not the template for you. This is intended to be a template for creating an issue based on an accepted proposal from the [SDL Evolution](https://www.github.com/smartdevicelink/sdl_evolution) process. | ||
- type: textarea | ||
id: proposal-link | ||
attributes: | ||
label: Proposal Link | ||
value: | | ||
Proposal: [Proposal Name](Proposal Link) | ||
render: markdown | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: proposal-description | ||
attributes: | ||
label: Proposal Introduction | ||
value: | | ||
> Paste proposal introduction here | ||
render: markdown | ||
validations: | ||
required: true | ||
- type: input | ||
id: review-link | ||
attributes: | ||
label: Review Link | ||
value: | | ||
Review: Paste Proposal Review Link Here | ||
validations: | ||
required: true |