-
Notifications
You must be signed in to change notification settings - Fork 91
Add issue templates for bugs, feature requests and documentation improvements #3199
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 all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
1f0cc76
Create config.yml
gsheni 74d4751
Create blank_issue.md
gsheni 57f27da
Create bug_report.md
gsheni e6d5ec1
Create feature_request.md
gsheni c74bee3
Create documentation_improvement.md
gsheni 63cb924
Update release_notes.rst
gsheni 7da11bb
Update config.yml
gsheni e1cbf44
Update minimum_dependency_checker.yml
gsheni 0658508
Update latest_dependency_checker.yml
gsheni 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,8 @@ | ||
| --- | ||
| name: Blank Issue | ||
| about: Create a blank issue | ||
| title: '' | ||
| labels: '' | ||
| assignees: '' | ||
|
|
||
| --- | ||
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: Bug Report | ||
| about: Create a bug report to help us improve EvalML | ||
| title: '' | ||
| labels: 'bug' | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
| [A clear and concise description of what the bug is.] | ||
|
|
||
| #### Code Sample, a copy-pastable example to reproduce your bug. | ||
|
|
||
| ```python | ||
| # Your code 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| blank_issues_enabled: true | ||
| contact_links: | ||
| - name: General Technical Question | ||
| about: "If you have a question like *How can I create a Component Graph?* you can ask on StackOverflow using the #evalml tag." | ||
| url: https://stackoverflow.com/questions/tagged/evalml | ||
| - name: Real-time chat | ||
| url: https://join.slack.com/t/alteryx-oss/shared_invite/zt-6inxevps-RSbpr9lsACE1kObXz4rIuA | ||
| about: "If you want to meet others in the community and chat about all things Alteryx OSS then check out our Slack." |
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,10 @@ | ||
| --- | ||
| name: Documentation Improvement | ||
| about: Suggest an idea for improving the documentation | ||
| title: '' | ||
| labels: 'documentation' | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
| [a description of what documentation you believe needs to be fixed/improved] |
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: Feature Request | ||
| about: Suggest an idea for this project | ||
| title: '' | ||
| labels: 'new feature' | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
| - As a [user/developer], I wish I could use EvalML to ... | ||
|
|
||
| #### Code Example | ||
|
|
||
| ```python | ||
| # Your code here, if applicable | ||
|
|
||
| ``` |
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 |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ jobs: | |
| evalml/tests/dependency_update_check/make_deps_diff.sh | ||
| cat evalml/tests/dependency_update_check/latest_dependency_versions.txt | ||
| - name: Create Pull Request | ||
| uses: FeatureLabs/create-pull-request@v3 | ||
| uses: peter-evans/create-pull-request@v3 | ||
|
Contributor
Author
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. Better to use the source, rather our fork (that we update from time to time) |
||
| with: | ||
| token: ${{ secrets.MACHINEFL_DEPENDENCY_CHECKER_TOKEN }} | ||
| commit-message: Update latest dependencies | ||
|
|
||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see that there's a default option on the bottom for blank issues too but happy to leave this as is!:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a bit hard to see, which is why I added it.