summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/issue.yml
blob: 68e4023588d0372a96304c924be943bfa18b39ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Report an issue
description: Tell us about something that's not working the way we (probably) intend
body:
  - type: input
    id: elixir-and-otp-version
    attributes:
      label: Elixir and Erlang/OTP versions
      description: Paste the output of `elixir -v` here.
    validations:
      required: true

  - type: input
    id: os
    attributes:
      label: Operating System
      description: The operating system that this issue is happening on.
    validations:
      required: true

  - type: textarea
    id: current-behavior
    attributes:
      label: Current behavior
      description: Include code samples, errors and stacktraces if appropriate. If reporting a bug, please include the reproducing steps.
      placeholder: |-
        1. foo
        2. bar
        3. baz
    validations:
      required: true

  - type: textarea
    id: expected-behavior
    attributes:
      label: Expected behavior
      description: A short description on how you expect the code to behave.
    validations:
      required: true