Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/blank_issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Blank Issue
Copy link
Contributor

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!:

image

Copy link
Contributor Author

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.

about: Create a blank issue
title: ''
labels: ''
assignees: ''

---
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
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

```
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
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."
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation_improvement.md
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]
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
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

```
2 changes: 1 addition & 1 deletion .github/workflows/latest_dependency_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Contributor Author

Choose a reason for hiding this comment

The 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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/minimum_dependency_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: |
printf "${{ steps.min_dep_gen_core.outputs.min_reqs }}" > evalml/tests/dependency_update_check/minimum_core_requirements.txt
- name: Create Pull Request
uses: FeatureLabs/create-pull-request@v3
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.MACHINEFL_DEPENDENCY_CHECKER_TOKEN }}
commit-message: Update minimum dependencies
Expand All @@ -74,4 +74,4 @@ jobs:
branch: min-dep-update
branch-suffix: short-commit-hash
base: main
reviewers: angela97lin, dsherry, jeremyliweishih, freddyaboulton, bchen1116, chukarsten, ParthivNaresh
reviewers: angela97lin, dsherry, jeremyliweishih, freddyaboulton, bchen1116, chukarsten, ParthivNaresh
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release Notes
* Enhancements
* Added string support for DataCheckActionCode :pr:`3167`
* Added ``DataCheckActionOption`` class :pr:`3134`
* Add issue templates for bugs, feature requests and documentation improvements for GitHub :pr:`3199`
* Fixes
* Fix bug where prediction explanations ``class_name`` was shown as float for boolean targets :pr:`3179`
* Fixed bug in nightly linux tests :pr:`3189`
Expand Down