Skip to content

Commit 80c8157

Browse files
Merge branch 'topic/github_templates' into 'master'
Add templates for GitHub issues See merge request eng/ide/ada_language_server!1563
2 parents 9281244 + 6b3ecb2 commit 80c8157

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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 (provide this for both host and target if you are using a remote or containerized development environment)
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, is the project an aggregate project, does it target native platforms or cross platforms etc.).
34+
value: |
35+
Bug Summary:
36+
37+
Steps to reproduce:
38+
39+
Expected behavior:
40+
validations:
41+
required: true
42+
- type: textarea
43+
attributes:
44+
label: Configuration and Logs
45+
description: |
46+
Please provide your VS Code workspace-specific configuration files and logs. Logs are in particular very useful to investigate bugs such as unexpected exceptions.
47+
- `tasks.json` file (for VS Code task-related issues) or `launch.json` (for VS Code debug-related issues)
48+
- Logs from running `Ada: Show extension output from the VS Code command palette
49+
- 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)
50+
render: shell
51+
validations:
52+
required: true
53+
- type: textarea
54+
attributes:
55+
label: Other VS Code Extensions
56+
description: If applicable, please list other extensions installed and if the issue persists after disabling other extensions.
57+
validations:
58+
required: false
59+
- type: textarea
60+
attributes:
61+
label: Additional context
62+
description: |
63+
Here you can provide any other information that will give us more context
64+
about the issue you are encountering (code sample, screenshots, screen recording of the issue,
65+
call stacks, etc.)
66+
validations:
67+
required: false
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Enhancement Request
2+
description: Suggest an idea for the Ada Language Server or the Ada & SPARK VS Code extension.
3+
title: "[Enhancement]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
### Is there an existing request for this enhancement?
10+
Prior to creating a new feature request, please review our [existing enhancement requests](https://github.com/AdaCore/ada_language_server/labels/enhancement) to avoid duplicates.
11+
- type: textarea
12+
attributes:
13+
label: Enhancement Request
14+
description: |
15+
Describe the enhancement here.
16+
validations:
17+
required: true

0 commit comments

Comments
 (0)