bug_report.yaml raw
1 name: Bug Report
2 about: Report a bug or unexpected behavior in ORLY relay
3 title: "[BUG] "
4 labels:
5 - bug
6 body:
7 - type: markdown
8 attributes:
9 value: |
10 ## Bug Report Guidelines
11
12 Thank you for taking the time to report a bug. Please fill out the form below to help us understand and reproduce the issue.
13
14 **Before submitting:**
15 - Search [existing issues](https://git.mleku.dev/mleku/next.orly.dev/issues) to avoid duplicates
16 - Check the [documentation](https://git.mleku.dev/mleku/next.orly.dev) for configuration guidance
17 - Ensure you're running a recent version of ORLY
18
19 - type: input
20 id: version
21 attributes:
22 label: ORLY Version
23 description: Run `./orly version` to get the version
24 placeholder: "v0.35.4"
25 validations:
26 required: true
27
28 - type: dropdown
29 id: database
30 attributes:
31 label: Database Backend
32 description: Which database backend are you using?
33 options:
34 - Badger (default)
35 - Neo4j
36 - WasmDB
37 validations:
38 required: true
39
40 - type: textarea
41 id: description
42 attributes:
43 label: Bug Description
44 description: A clear and concise description of the bug
45 placeholder: Describe what happened and what you expected to happen
46 validations:
47 required: true
48
49 - type: textarea
50 id: reproduction
51 attributes:
52 label: Steps to Reproduce
53 description: Detailed steps to reproduce the behavior
54 placeholder: |
55 1. Start relay with `./orly`
56 2. Connect with client X
57 3. Perform action Y
58 4. Observe error Z
59 validations:
60 required: true
61
62 - type: textarea
63 id: expected
64 attributes:
65 label: Expected Behavior
66 description: What did you expect to happen?
67 validations:
68 required: true
69
70 - type: textarea
71 id: logs
72 attributes:
73 label: Relevant Logs
74 description: |
75 Include relevant log output. Set `ORLY_LOG_LEVEL=debug` or `trace` for more detail.
76 This will be automatically formatted as code.
77 render: shell
78
79 - type: textarea
80 id: config
81 attributes:
82 label: Configuration
83 description: |
84 Relevant environment variables or configuration (redact sensitive values).
85 This will be automatically formatted as code.
86 render: shell
87 placeholder: |
88 ORLY_ACL_MODE=follows
89 ORLY_POLICY_ENABLED=true
90 ORLY_DB_TYPE=badger
91
92 - type: textarea
93 id: environment
94 attributes:
95 label: Environment
96 description: Operating system, Go version, etc.
97 placeholder: |
98 OS: Linux 6.8.0
99 Go: 1.25.3
100 Architecture: amd64
101
102 - type: textarea
103 id: additional
104 attributes:
105 label: Additional Context
106 description: Any other context, screenshots, or information that might help
107
108 - type: checkboxes
109 id: checklist
110 attributes:
111 label: Checklist
112 options:
113 - label: I have searched existing issues and this is not a duplicate
114 required: true
115 - label: I have included version information
116 required: true
117 - label: I have included steps to reproduce the issue
118 required: true
119