diff --git a/.github/ISSUE_TEMPLATE/001_bug_report.yml b/.github/ISSUE_TEMPLATE/001_bug_report.yml index b707c762846..907e2b94e43 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 dd1459ef98e..b20761ed56f 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 30818b5dc96..b477ade779f 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 7f36edebe27..cb6e22ac400 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'];