summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/bug_template.yml
blob: a011a22cc2f9b3b7f5acde92ba5e84e2e3b19db3 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: Bug Report
description: Report a bug in Flatpak
title: "[Bug]: "
labels: "bug"
body:
- type: checkboxes
  attributes:
    label: Checklist
    description: Please make sure you have read the following.
    options:
      - label: I agree to follow the [Code of Conduct](https://github.com/flatpak/flatpak/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
        required: true
      - label: I have searched the [issue tracker](https://www.github.com/flatpak/flatpak/issues) for a bug that matches the one I want to file, without success.
        required: true
      - label: If this is an issue with a particular app, I have tried filing it in the appropriate issue tracker for the app (e.g. under https://github.com/flathub/) and determined that it is an issue with Flatpak itself.
        required: true
- type: input
  attributes:
    label: Flatpak version
    description: What version of Flatpak are you using? If unsure, run `flatpak --version` in the terminal.
    placeholder: 1.10.2
  validations:
    required: true
- type: dropdown
  attributes:
    label: What Linux distribution are you using?
    options:
      - Alpine Linux
      - Arch Linux
      - Artix Linux
      - CentOS
      - ChromeOS
      - Clear Linux
      - Debian
      - Endless OS
      - Fedora Linux
      - Fedora Silverblue
      - Gentoo Linux
      - openSUSE
      - Linux Mint
      - Manjaro Linux
      - MicroOS
      - NixOS
      - Pop!_OS
      - Raspberry Pi OS
      - Solus
      - Ubuntu
      - Void Linux
      - Other (specify below)
  validations:
    required: true
- type: input
  attributes:
    label: Linux distribution version
    description: What Linux distribution version are you using? If unsure, run `uname -a` in the terminal.
    placeholder: "e.g. 34, 20.04"
- type: dropdown
  attributes:
    label: What architecture are you using?
    options:
      - i386
      - x86_64
      - aarch64
      - arm
      - armeb
  validations:
    required: true
- type: textarea
  attributes:
    label: How to reproduce
    description: A clear description of how to reproduce the problem.
    placeholder: |
      1. Go to `...`
      2. Click on `...`
      3. Scroll down to `...`
      4. See error
  validations:
    required: false
- type: textarea
  attributes:
    label: Expected Behavior
    description: A clear and concise description of what you expected to happen.
  validations:
    required: true
- type: textarea
  attributes:
    label: Actual Behavior
    description: A clear description of what actually happens.
  validations:
    required: true
- type: textarea
  attributes:
    label: Additional Information
    description: If your problem needs further explanation, or if the issue you're seeing cannot be reproduced in a gist, please add more information here.