summaryrefslogtreecommitdiffstats
path: root/.github/ISSUE_TEMPLATE/bug_report.yml
blob: bfad8bec3ae0f243edf7ae710014057a481d23c0 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
---
name: Bug Report
description: "🐞 Create a report to help us improve"
body:
  - type: markdown
    attributes:
      value: |
        Bug Report issues are for **concrete, actionable bugs** only.
        For debugging help or technical support, please see the [Get Involved section of our README](https://github.com/ansible/awx#get-involved)

  - type: checkboxes
    id: terms
    attributes:
      label: Please confirm the following
      options:
        - label: I agree to follow this project's [code of conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html).
          required: true
        - label: I have checked the [current issues](https://github.com/ansible/awx/issues) for duplicates.
          required: true
        - label: I understand that AWX is open source software provided for free and that I might not receive a timely response.
          required: true
        - label: I am **NOT** reporting a (potential) security vulnerability. (These should be emailed to `security@ansible.com` instead.)
          required: true

  - type: textarea
    id: summary
    attributes:
      label: Bug Summary
      description: Briefly describe the problem.
    validations:
      required: false

  - type: input
    id: awx-version
    attributes:
      label: AWX version
      description: What version of AWX are you running?
    validations:
      required: true

  - type: checkboxes
    id: components
    attributes:
      label: Select the relevant components
      options:
        - label: UI
        - label: UI (tech preview)
        - label: API
        - label: Docs
        - label: Collection
        - label: CLI
        - label: Other

  - type: dropdown
    id: awx-install-method
    attributes:
      label: Installation method
      description: How did you install AWX?
      multiple: false
      options:
        - kubernetes
        - minikube
        - openshift
        - minishift
        - docker development environment
        - N/A
    validations:
      required: true

  - type: dropdown
    id: modified-architecture
    attributes:
      label: Modifications
      description: >-
       Have you modified the installation, deployment topology, or container images in any way? If yes, please
       explain in the "additional information" field at the bottom of the form.
      multiple: false
      options:
        - "no"
        - "yes"
    validations:
      required: true

  - type: input
    id: ansible-version
    attributes:
      label: Ansible version
      description: What version of Ansible are you running?
    validations:
      required: false

  - type: input
    id: operating-system
    attributes:
      label: Operating system
      description: What operating system are you using?
    validations:
      required: false

  - type: dropdown
    id: browsers
    attributes:
      label: Web browser
      description: Which browsers are affected?
      multiple: true
      options:
        - Firefox
        - Chrome
        - Safari
        - Edge
    validations:
      required: false

  - type: textarea
    id: steps-to-reproduce
    attributes:
      label: Steps to reproduce
      description: >-
        Starting from a new installation of the system, describe exactly how a developer or quality engineer can reproduce the bug
        on infrastructure that isn't yours. Include any and all resources created, input values, test users, roles assigned, playbooks used, etc.
    validations:
      required: true

  - type: textarea
    id: expected-results
    attributes:
      label: Expected results
      description: What did you expect to happpen when running the steps above?
    validations:
      required: true

  - type: textarea
    id: actual-results
    attributes:
      label: Actual results
      description: What actually happened?
    validations:
      required: true

  - type: textarea
    id: additional-information
    attributes:
      label: Additional information
      description: Include any relevant log output, links to sosreport, database dumps, screenshots, or other information.
    validations:
      required: false