Skip to content

Commit

Permalink
chore: add issue templates (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
yordis authored Jun 1, 2022
1 parent 3b2187a commit c2ea7d0
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
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
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
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.

0 comments on commit c2ea7d0

Please sign in to comment.