...
1description: 'Create a bug report'
2labels:
3 - bug
4name: 'Bug Report'
5body:
6 - attributes:
7 value: "Thank you for taking the time to fill out this bug report!\n"
8 type: markdown
9 - attributes:
10 label: 'Preflight checklist'
11 options:
12 - label:
13 'I could not find a solution in the existing issues, docs, nor
14 discussions.'
15 required: true
16 - label:
17 "I agree to follow this project's [Code of
18 Conduct](https://github.com/ory/fosite/blob/master/CODE_OF_CONDUCT.md)."
19 required: true
20 - label:
21 "I have read and am following this repository's [Contribution
22 Guidelines](https://github.com/ory/fosite/blob/master/CONTRIBUTING.md)."
23 required: true
24 - label:
25 'This issue affects my [Ory Cloud](https://www.ory.sh/) project.'
26 - label:
27 'I have joined the [Ory Community Slack](https://slack.ory.sh).'
28 - label:
29 'I am signed up to the [Ory Security Patch
30 Newsletter](https://ory.us10.list-manage.com/subscribe?u=ffb1a878e4ec6c0ed312a3480&id=f605a41b53).'
31 id: checklist
32 type: checkboxes
33 - attributes:
34 description: 'A clear and concise description of what the bug is.'
35 label: 'Describe the bug'
36 placeholder: 'Tell us what you see!'
37 id: describe-bug
38 type: textarea
39 validations:
40 required: true
41 - attributes:
42 description: |
43 Clear, formatted, and easy to follow steps to reproduce the behavior:
44 placeholder: |
45 Steps to reproduce the behavior:
46
47 1. Run `docker run ....`
48 2. Make API Request to with `curl ...`
49 3. Request fails with response: `{"some": "error"}`
50 label: 'Reproducing the bug'
51 id: reproduce-bug
52 type: textarea
53 validations:
54 required: true
55 - attributes:
56 description:
57 'Please copy and paste any relevant log output. This will be
58 automatically formatted into code, so no need for backticks. Please
59 redact any sensitive information'
60 label: 'Relevant log output'
61 render: shell
62 placeholder: |
63 log=error ....
64 id: logs
65 type: textarea
66 - attributes:
67 description:
68 'Please copy and paste any relevant configuration. This will be
69 automatically formatted into code, so no need for backticks. Please
70 redact any sensitive information!'
71 label: 'Relevant configuration'
72 render: yml
73 placeholder: |
74 server:
75 admin:
76 port: 1234
77 id: config
78 type: textarea
79 - attributes:
80 description: 'What version of our software are you running?'
81 label: Version
82 id: version
83 type: input
84 validations:
85 required: true
86 - attributes:
87 label: 'On which operating system are you observing this issue?'
88 options:
89 - Ory Cloud
90 - macOS
91 - Linux
92 - Windows
93 - FreeBSD
94 - Other
95 id: operating-system
96 type: dropdown
97 - attributes:
98 label: 'In which environment are you deploying?'
99 options:
100 - Ory Cloud
101 - Docker
102 - 'Docker Compose'
103 - 'Kubernetes with Helm'
104 - Kubernetes
105 - Binary
106 - Other
107 id: deployment
108 type: dropdown
109 - attributes:
110 description: 'Add any other context about the problem here.'
111 label: Additional Context
112 id: additional
113 type: textarea
View as plain text