-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
65 additions
and
24 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,55 @@ | ||
name: 🐞 Bug Report | ||
description: Tell us about something that's not working the way we (probably) intend. | ||
labels: ["Kind:Bug", "State:Triage"] | ||
body: | ||
- type: input | ||
id: elixir-version | ||
attributes: | ||
label: Elixir version | ||
description: Use `elixir -v` to find the Elixir version. | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: db-version | ||
attributes: | ||
label: Database and Version | ||
description: > | ||
The database and its version (PostgreSQL 9.4, MongoDB 3.2, etc.) | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: ecto-version | ||
attributes: | ||
label: Ecto Versions | ||
description: Use `mix deps` to find the dependency versions. | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: db-adapter-version | ||
attributes: | ||
label: Database Adapter and Versions (postgrex, myxql, etc) | ||
description: Use `mix deps` to find the dependency versions. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: current-behavior | ||
attributes: | ||
label: Current behavior | ||
description: How can we reproduce what you're seeing? Include code samples, errors and stacktraces if appropriate. | ||
placeholder: |- | ||
1. foo | ||
2. bar | ||
3. baz | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
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,10 @@ | ||
blank_issues_enabled: false | ||
|
||
contact_links: | ||
- name: Discuss proposals | ||
url: https://groups.google.com/g/elixir-ecto | ||
about: Send proposals for new ideas in the mailing list. | ||
- name: Ask questions | ||
url: https://elixirforum.com/ | ||
about: Ask and answer questions on ElixirForum. | ||
|