From 4a039e9452bb52364a2f4e2c90ee4bfd5cb87b73 Mon Sep 17 00:00:00 2001 From: "Matthieu Baerts (NGI0)" Date: Tue, 22 Oct 2024 12:16:15 +0200 Subject: [PATCH 1/3] gh: add security policy Recommended to define how users should report security vulnerabilities for this repository. Signed-off-by: Matthieu Baerts (NGI0) --- SECURITY.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000000000..bcf5c945a0a8df --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,17 @@ +# Security Policy + +## Supported Versions + +The ones mentioned on [kernel.org](https://www.kernel.org). + +## Reporting a Vulnerability + +Please report any issues to us, either via +[GitHub](https://github.com/multipath-tcp/mptcp_net-next/security/advisories/new), +or via emails to the MPTCP maintainers: + + - Matthieu Baerts + - Mat Martineau + +(Check the [MAINTAINERS](https://github.com/multipath-tcp/mptcp_net-next/blob/export/MAINTAINERS) +file to get the up-to-date list.) From acf6d69d51b1a3273e03c5df570730aaa71dd0bc Mon Sep 17 00:00:00 2001 From: "Matthieu Baerts (NGI0)" Date: Tue, 22 Oct 2024 12:24:43 +0200 Subject: [PATCH 2/3] gh: add FUNDING button We never know, that might help to insure the project can continue to be maintained. Any other long term contributors are welcome in this list. Signed-off-by: Matthieu Baerts (NGI0) --- .github/FUNDING.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000000000..b20b2d730e5bcd --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: [matttbe] From 13ea491cf6ee60757d03882d87ea3eea70024947 Mon Sep 17 00:00:00 2001 From: "Matthieu Baerts (NGI0)" Date: Tue, 22 Oct 2024 15:24:01 +0200 Subject: [PATCH 3/3] gh: add issue templates To avoid having to re-ask the same questions regularly. Signed-off-by: Matthieu Baerts (NGI0) --- .github/ISSUE_TEMPLATE/01-bug.yml | 64 ++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/02-feature.yml | 18 ++++++++ .github/ISSUE_TEMPLATE/03-question.yml | 10 ++++ 3 files changed, 92 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/01-bug.yml create mode 100644 .github/ISSUE_TEMPLATE/02-feature.yml create mode 100644 .github/ISSUE_TEMPLATE/03-question.yml diff --git a/.github/ISSUE_TEMPLATE/01-bug.yml b/.github/ISSUE_TEMPLATE/01-bug.yml new file mode 100644 index 00000000000000..5bc372cc49770c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01-bug.yml @@ -0,0 +1,64 @@ +--- +name: Bug report +about: Create a report to help us improve +labels: ["bug", "triage"] + +--- + +**Describe the bug** + + +**To Reproduce** +Steps to reproduce the behavior: +1. **TODO** + +**Expected behavior** + + +**System: Client** + - Kernel version (`uname -a`): **TODO** + - Distribution and version (or `cat /etc/os-release`): **TODO** + - MPTCP sysctl (`sysctl net.mptcp`): +``` +TODO +``` + - MPTCP PM Endpoints (`ip mptcp endpoint show`): +``` +TODO +``` + - MPTCP PM limits (`ip mptcp limits show`): +``` +TODO +``` + +**System: Server** + - Kernel version (`uname -a`): **TODO** + - Distribution and version (or `cat /etc/os-release`): **TODO** + - MPTCP sysctl (`sysctl net.mptcp`): +``` +TODO +``` + - MPTCP PM Endpoints (`ip mptcp endpoint show`): +``` +TODO +``` + - MPTCP PM limits (`ip mptcp limits show`): +``` +TODO +``` + +**Up-to-date kernel?** + + +**Additional context** + diff --git a/.github/ISSUE_TEMPLATE/02-feature.yml b/.github/ISSUE_TEMPLATE/02-feature.yml new file mode 100644 index 00000000000000..9844cc8376c80b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02-feature.yml @@ -0,0 +1,18 @@ +--- +name: Feature request +about: Suggest an idea for this project +labels: ["enhancement", "triage"] + +--- + +**Is your feature request related to a problem?** + + +**Describe the solution you'd like** + + +**Describe alternatives you've considered** + + +**Additional context** + diff --git a/.github/ISSUE_TEMPLATE/03-question.yml b/.github/ISSUE_TEMPLATE/03-question.yml new file mode 100644 index 00000000000000..d1fe78b2a241a4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/03-question.yml @@ -0,0 +1,10 @@ +--- +name: Question +about: Ask any questions here +labels: ["question", "triage"] + +--- + +Please use the bug report template if you have a question related to the current behavior: we will need details about your system. + +https://github.com/multipath-tcp/mptcp_net-next/issues/new/choose