Skip to content

Commit 7a0f767

Browse files
Add issue template for GitHub bug reports
For eng/ide/ada_language_server#1346
1 parent 9281244 commit 7a0f767

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: Bug Report
2+
description: Create a bug report for the Ada Language Server. This can concern the LSP language server itself or
3+
the VS Code extension on top of it.
4+
title: "[Bug]: "
5+
labels: ["bug"]
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
### Is there an existing issue for this?
11+
Please search our [existing issues](https://github.com/AdaCore/ada_language_server/issues) to see if an issue already exists for the bug you encountered.
12+
13+
Please also don't hesitate to read our [documentation](https://github.com/AdaCore/ada_language_server) first.
14+
- type: textarea
15+
attributes:
16+
label: Environment
17+
description: |
18+
Please provide the information for the following:
19+
- OS and Version (host or remote if using SSH)
20+
- IDE Version (for example "VS Code 1.89.0" or "GNAT Studio 24.2")
21+
- Ada & SPARK Extension Version (if using VS Code)
22+
value: |
23+
- OS and Version:
24+
- IDE Version:
25+
- Ada & SPARK Extension Version:
26+
validations:
27+
required: true
28+
- type: textarea
29+
attributes:
30+
label: Bug Summary and Reproducer
31+
description: |
32+
Please describe the feature (for example, completion) that is not working as expected.
33+
Include information about the actual workspace project (for example, does the project is an aggregate project, does it target native platforms or cross platforms etc.).
34+
value: |
35+
Bug Summary:
36+
37+
Steps to reproduce:
38+
1. Go to '...'
39+
2. Click on '....'
40+
3. Scroll down to '....'
41+
4. See error
42+
43+
Expected behavior:
44+
validations:
45+
required: true
46+
- type: textarea
47+
attributes:
48+
label: Configuration and Logs
49+
description: |
50+
Please provide your VS Code workspace-specific configuration files and logs. Logs are in particular very useful to investigate bugs such as unexpected exceptions.
51+
- `tasks.json` file (for VS Code task-related issues) or `launch.json` (for VS Code debug-related issues)
52+
- Logs from running `Ada: Show extension output from the VS Code command palette
53+
- Logs from the Ada Language Server in the `$HOME/.als directory (`%USERPROFILE%/.als`` on Windows). More info about ALS logging can be found [here](https://github.com/AdaCore/ada_language_server/blob/master/doc/traces.md)
54+
render: shell
55+
validations:
56+
required: true
57+
- type: textarea
58+
attributes:
59+
label: Other VS Code Extensions
60+
description: If applicable, please list other extensions installed and if the issue persists after disabling other extensions.
61+
validations:
62+
required: false
63+
- type: textarea
64+
attributes:
65+
label: Additional context
66+
description: |
67+
Here you can provide any other information that will give us more context
68+
about the issue you are encountering (code sample, screenshots, screen recording of the issue,
69+
call stacks, etc.)
70+
validations:
71+
required: false

0 commit comments

Comments
 (0)