This is an automated email from the ASF dual-hosted git repository.
acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 439b9e9683 ISSUE_TEMPLATE: Fixed incorrect links for issue forms
439b9e9683 is described below
commit 439b9e9683c333ef07d541f3313bcaace4129241
Author: simbit18 <[email protected]>
AuthorDate: Mon Aug 5 15:33:41 2024 +0200
ISSUE_TEMPLATE: Fixed incorrect links for issue forms
Correct links:
- Bug report
- Feature request
- General Help
add BSD keyword
---
.github/ISSUE_TEMPLATE/001_bug_report.yml | 5 +++--
.github/ISSUE_TEMPLATE/002_feature_request.yml | 4 ++--
.github/ISSUE_TEMPLATE/003_help.yml | 4 ++--
.github/workflows/issue_labeler.yml | 2 +-
4 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/.github/ISSUE_TEMPLATE/001_bug_report.yml
b/.github/ISSUE_TEMPLATE/001_bug_report.yml
index b707c76284..907e2b94e4 100644
--- a/.github/ISSUE_TEMPLATE/001_bug_report.yml
+++ b/.github/ISSUE_TEMPLATE/001_bug_report.yml
@@ -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]"
diff --git a/.github/ISSUE_TEMPLATE/002_feature_request.yml
b/.github/ISSUE_TEMPLATE/002_feature_request.yml
index dd1459ef98..b20761ed56 100644
--- a/.github/ISSUE_TEMPLATE/002_feature_request.yml
+++ b/.github/ISSUE_TEMPLATE/002_feature_request.yml
@@ -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
diff --git a/.github/ISSUE_TEMPLATE/003_help.yml
b/.github/ISSUE_TEMPLATE/003_help.yml
index 30818b5dc9..b477ade779 100644
--- a/.github/ISSUE_TEMPLATE/003_help.yml
+++ b/.github/ISSUE_TEMPLATE/003_help.yml
@@ -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:
diff --git a/.github/workflows/issue_labeler.yml
b/.github/workflows/issue_labeler.yml
index 7f36edebe2..cb6e22ac40 100644
--- a/.github/workflows/issue_labeler.yml
+++ b/.github/workflows/issue_labeler.yml
@@ -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'];