-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from pthierry-ledger/fix-templates
templates: fixing template with valid syntax
- Loading branch information
Showing
4 changed files
with
71 additions
and
63 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# SPDX-FileCopyrightText: 2024 Ledger SAS | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Bug Report | ||
description: File a bug report. | ||
title: "bug: " | ||
projects: ["outpost-os/1"] | ||
assignees: | ||
- fvalette-ledger | ||
- pthierry-ledger | ||
labels: ["bug"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: What is the problem or what is asked ? | ||
- type: textarea | ||
id: svd2json-version | ||
attributes: | ||
label: What svd2json version is impacted | ||
description: svd2json version used | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: python-version | ||
attributes: | ||
label: What is the python version used ? | ||
multiple: true | ||
options: | ||
- '3.10' | ||
- '3.11' | ||
- '3.12' | ||
- '3.13+' | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# SPDX-FileCopyrightText: 2024 Ledger SAS | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Proposing a feature/enancement | ||
description: File an evolution proposition | ||
title: "feature: " | ||
projects: ["outpost-os/1"] | ||
assignees: | ||
- fvalette-ledger | ||
- pthierry-ledger | ||
labels: ["bug"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for proposing a new feature or an evolution! | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What is proposed ? | ||
description: feature/enhancement proposal | ||
|