- Notifications
You must be signed in to change notification settings - Fork 28
[FSSDK-9555] GitHub Issue Templates #337
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
Merged
Merged
Changes from 9 commits
Commits
Show all changes
10 commits Select commit Hold shift + click to select a range
0d780df
Add devcontainer config
mikechu-optimizely 1cbf40e
Add Ruby flavor GH Issue templates
mikechu-optimizely 6e6d145
Add gitlens to devcontainer
mikechu-optimizely 7e512c3
Add PR #298 doc fix
mikechu-optimizely 44fcf8c
Add GitLense to devcontainer
mikechu-optimizely 5e79993
Testing updates to ruby CI
mikechu-optimizely 40efc21
Fix linting item
mikechu-optimizely 077c185
Rollback CI changes
mikechu-optimizely 919bd74
Add suggested setup from @andrewleap-optimizely
mikechu-optimizely 06602f5
fix for solargraph extension
andrewleap-optimizely File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,17 @@ | ||
{ | ||
"name": "Ruby SDK", | ||
| ||
"image": "mcr.microsoft.com/devcontainers/ruby:1-3.2-bullseye", | ||
| ||
"postCreateCommand": "set -e && bundle install && gem install optimizely-sdk && rake build && gem install pkg/*", | ||
| ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"eamodio.gitlens", | ||
"github.vscode-github-actions", | ||
"castwide.solargraph" | ||
] | ||
} | ||
} | ||
} |
This file contains hidden or 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,94 @@ | ||
name: 🐞 Bug | ||
description: File a bug/issue | ||
title: "[BUG] <title>" | ||
labels: ["bug", "needs-triage"] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please search to see if an issue already exists for the bug you encountered. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: SDK Version | ||
description: Version of the SDK in use? | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Current Behavior | ||
description: A concise description of what you're experiencing. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: A concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
1. In this environment... | ||
1. With this config... | ||
1. Run '...' | ||
1. See error... | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Ruby Version | ||
description: What version of Ruby are you using? | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Rails | ||
description: If you're using Rail, what version? | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Link | ||
description: Link to code demonstrating the problem. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Logs | ||
description: Logs/stack traces related to the problem (⚠️do not include sensitive information). | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: Severity | ||
description: What is the severity of the problem? | ||
multiple: true | ||
options: | ||
- Blocking development | ||
- Affecting users | ||
- Minor issue | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Workaround/Solution | ||
description: Do you have any workaround or solution in mind for the problem? | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Recent Change | ||
description: Has this issue started happening after an update or experiment change? | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Conflicts | ||
description: Are there other libraries/dependencies potentially in conflict? | ||
validations: | ||
required: false |
This file contains hidden or 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,45 @@ | ||
name: ✨Enhancement | ||
description: Create a new ticket for a Enhancement/Tech-initiative for the benefit of the SDK which would be considered for a minor version update. | ||
title: "[ENHANCEMENT] <title>" | ||
labels: ["enhancement"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Briefly describe the enhancement in a few sentences. | ||
placeholder: Short description... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: benefits | ||
attributes: | ||
label: Benefits | ||
description: How would the enhancement benefit to your product or usage? | ||
placeholder: Benefits... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: detail | ||
attributes: | ||
label: Detail | ||
description: How would you like the enhancement to work? Please provide as much detail as possible | ||
placeholder: Detailed description... | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: examples | ||
attributes: | ||
label: Examples | ||
description: Are there any examples of this enhancement in other products/services? If so, please provide links or references. | ||
placeholder: Links/References... | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: risks | ||
attributes: | ||
label: Risks/Downsides | ||
description: Do you think this enhancement could have any potential downsides or risks? | ||
placeholder: Risks/Downsides... | ||
validations: | ||
required: false |
This file contains hidden or 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,4 @@ | ||
<!-- | ||
Thanks for filing in issue! Are you requesting a new feature? If so, please share your feedback with us on the following link. | ||
--> | ||
## Feedback requesting a new feature can be shared [here.](https://feedback.optimizely.com/) |
This file contains hidden or 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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 💡Feature Requests | ||
url: https://feedback.optimizely.com/ | ||
about: Feedback requesting a new feature can be shared here. |
This file contains hidden or 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
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.