]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
github contributing and pull request template
authorBob Halley <halley@dnspython.org>
Fri, 9 Feb 2024 22:12:59 +0000 (14:12 -0800)
committerBob Halley <halley@dnspython.org>
Fri, 9 Feb 2024 22:19:56 +0000 (14:19 -0800)
(cherry picked from commit 7401efab4d6c2db93886ca92b4479ce90d749a51)

.github/PULL_REQUEST_TEMPLATE.md [new file with mode: 0644]
CONTRIBUTING.md [new file with mode: 0644]

diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644 (file)
index 0000000..e68d359
--- /dev/null
@@ -0,0 +1,3 @@
+# Description
+
+Please describe your PR here.
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644 (file)
index 0000000..55c10be
--- /dev/null
@@ -0,0 +1,19 @@
+# Contributing to dnspython
+
+## Reporting Issues
+
+Please start with a clear and concise description of what the bug is, and what you
+expected to happen instead.  Next, please describe in detail how to reproduce the bug.
+Making the replication steps as simple and short as possible is very helpful.  Please
+also include the requested version information.
+
+## Contributing Code
+
+For any significant change or new API, we recommend opening a Feature Request issue
+and having a discussion before coding begins.
+
+Please add tests for any code, as PRs without testing or which reduce the overall code
+test coverage may not be merged.  Code should also be formatted with "black", be typed
+(and pass type checking), and also pass the test suite.
+
+Our thanks for being a contributor!