mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 02:48:37 +08:00
ISSUE_TEMPLATE: Fixed incorrect links for issue forms
Correct links: - Bug report - Feature request - General Help add BSD keyword
This commit is contained in:
parent
65e989e063
commit
439b9e9683
4 changed files with 8 additions and 7 deletions
5
.github/ISSUE_TEMPLATE/001_bug_report.yml
vendored
5
.github/ISSUE_TEMPLATE/001_bug_report.yml
vendored
|
@ -21,8 +21,8 @@ body:
|
|||
Hello NuttX Community member! Please keep things tidy by putting your post in the proper place:
|
||||
|
||||
Reporting a bug: use this form.
|
||||
Asking a question or getting help: use the [General Help](https://github.com/simbit18/nuttx-testing-templates/issues/new?assignees=&labels=question&projects=&template=003_help.yml&title=help%3A+help+title) form or [Mailing list](https://nuttx.apache.org/community/).
|
||||
Requesting a new feature: use the [Feature request](https://github.com/simbit18/nuttx-testing-templates/issues/new?assignees=&labels=enhancement&projects=&template=002_feature_request.yml) form.
|
||||
Asking a question or getting help: use the [General Help](https://github.com/apache/nuttx/issues/new?assignees=&labels=question&projects=&template=003_help.yml&title=help%3A+help+title) form or [Mailing list](https://nuttx.apache.org/community/).
|
||||
Requesting a new feature: use the [Feature request](https://github.com/apache/nuttx/issues/new?assignees=&labels=enhancement&projects=&template=002_feature_request.yml) form.
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Description / Steps to reproduce the issue"
|
||||
|
@ -47,6 +47,7 @@ body:
|
|||
label: On which OS does this issue occur?
|
||||
multiple: true
|
||||
options:
|
||||
- "[BSD]"
|
||||
- "[Linux]"
|
||||
- "[Mac]"
|
||||
- "[Windows]"
|
||||
|
|
|
@ -21,8 +21,8 @@ body:
|
|||
Hello NuttX Community member! Please keep things tidy by putting your post in the proper place:
|
||||
|
||||
Requesting a new feature: use this form.
|
||||
Asking a question or getting help: use the [General Help](https://github.com/simbit18/nuttx-testing-templates/issues/new?assignees=&labels=question&projects=&template=003_help.yml&title=help%3A+help+title) form or [Mailing list](https://nuttx.apache.org/community/).
|
||||
Reporting a bug: use the [Bug report](https://github.com/simbit18/nuttx-testing-templates/issues/new?assignees=&labels=bug&projects=&template=001_bug_report.yml) form.
|
||||
Asking a question or getting help: use the [General Help](https://github.com/apache/nuttx/issues/new?assignees=&labels=question&projects=&template=003_help.yml&title=help%3A+help+title) form or [Mailing list](https://nuttx.apache.org/community/).
|
||||
Reporting a bug: use the [Bug report](https://github.com/apache/nuttx/issues/new?assignees=&labels=bug&projects=&template=001_bug_report.yml) form.
|
||||
|
||||
- type: textarea
|
||||
id: question-description
|
||||
|
|
4
.github/ISSUE_TEMPLATE/003_help.yml
vendored
4
.github/ISSUE_TEMPLATE/003_help.yml
vendored
|
@ -21,8 +21,8 @@ body:
|
|||
Hello NuttX Community member! Please keep things tidy by putting your post in the proper place:
|
||||
|
||||
Asking a question or getting help: use this form or [Mailing list](https://nuttx.apache.org/community/).
|
||||
Reporting a bug: use the [Bug report](https://github.com/simbit18/nuttx-testing-templates/issues/new?assignees=&labels=bug&projects=&template=001_bug_report.yml) form.
|
||||
Requesting a new feature: use the [Feature request](https://github.com/simbit18/nuttx-testing-templates/issues/new?assignees=&labels=enhancement&projects=&template=002_feature_request.yml) form
|
||||
Reporting a bug: use the [Bug report](https://github.com/apache/nuttx/issues/new?assignees=&labels=bug&projects=&template=001_bug_report.yml) form.
|
||||
Requesting a new feature: use the [Feature request](https://github.com/apache/nuttx/issues/new?assignees=&labels=enhancement&projects=&template=002_feature_request.yml) form
|
||||
|
||||
- type: markdown
|
||||
attributes:
|
||||
|
|
2
.github/workflows/issue_labeler.yml
vendored
2
.github/workflows/issue_labeler.yml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
|||
script: |
|
||||
const body = context.payload.issue.body;
|
||||
const bodySplit = body.split(/\[|\]/).map(e => e.toLowerCase());
|
||||
const oskeywords = ['other', 'linux', 'mac', 'Windows'];
|
||||
const oskeywords = ['other', 'bsd', 'linux', 'mac', 'windows'];
|
||||
const archkeywords1 = ['all', 'arm', 'arm64', 'avr', 'ceva', 'hc', 'mips', 'misoc', 'openrisc', 'renesas'];
|
||||
const archkeywords2 = ['risc-v', 'simulator', 'sparc', 'tricore', 'x86', 'x86_64', 'xtensa', 'z16', 'z80', 'renesas'];
|
||||
const areakeywords1 = ['applications', 'api', 'board support', 'build system', 'configuring', 'debugging', 'drivers', 'file system', 'installing', 'kconfig'];
|
||||
|
|
Loading…
Reference in a new issue