From 295b5726f0eef40905a116f6778ff2d72ba798e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 29 Aug 2023 06:44:11 -0700 Subject: [PATCH] Introduce pull request template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change introduces a pull request template that hopefully helps prevent more libbpf-specific pull requests that should really be submitted to the BPF mailing from being opened against this repository. Recent examples include [0] [1]. [0] https://github.com/libbpf/libbpf/pull/712 [1] https://github.com/libbpf/libbpf/pull/723 Signed-off-by: Daniel Müller --- .github/PULL_REQUEST_TEMPLATE.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..c7a2eae --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,3 @@ +Thank you for considering a contribution! + +Please note that the `libbpf` authoritative source code is developed as part of bpf-next Linux source tree under tools/lib/bpf subdirectory and is periodically synced to Github. As such, all the libbpf changes should be sent to BPF mailing list, please don't open PRs here unless you are changing Github-specific parts of libbpf (e.g., Github-specific Makefile).