summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeniamino Galvani <bgalvani@redhat.com>2023-06-23 11:45:56 +0200
committerBeniamino Galvani <bgalvani@redhat.com>2023-06-26 10:08:37 +0200
commit454f8fc7d6c298c820c406c31ffc904a05cf69fa (patch)
tree2ac3b7e4096f95cffcdbc5c629c0aa0ac565d654
parent152bc92c4d948f2f6fdf2928ca427a90b8b2b537 (diff)
gitlab: add template messages for issues and merge requestsgitlab-templates
Add template messages to help contributors to create issues and merge requests that are useful and complete. https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1669
-rw-r--r--.gitlab/issue_templates/Bug.md18
-rw-r--r--.gitlab/issue_templates/Feature.md5
-rw-r--r--.gitlab/merge_request_templates/Default.md19
3 files changed, 42 insertions, 0 deletions
diff --git a/.gitlab/issue_templates/Bug.md b/.gitlab/issue_templates/Bug.md
new file mode 100644
index 0000000000..861c99f0b9
--- /dev/null
+++ b/.gitlab/issue_templates/Bug.md
@@ -0,0 +1,18 @@
+## Summary
+
+(Summarize the bug encountered concisely)
+
+## Version affected
+
+(Which version of NetworkManager is affected (`nmcli --version`), which distro, and the version of any other relevant software involved)
+
+## Steps to reproduce
+
+## Actual result
+
+## Expected result
+
+## Relevant logs
+
+(Please see the DEBUGGING section of `man NetworkManager` and attach any relevant log)
+
diff --git a/.gitlab/issue_templates/Feature.md b/.gitlab/issue_templates/Feature.md
new file mode 100644
index 0000000000..7301d5092b
--- /dev/null
+++ b/.gitlab/issue_templates/Feature.md
@@ -0,0 +1,5 @@
+## Description of the feature
+
+## Description of the use cases
+
+## References and other resources
diff --git a/.gitlab/merge_request_templates/Default.md b/.gitlab/merge_request_templates/Default.md
new file mode 100644
index 0000000000..75f72145ec
--- /dev/null
+++ b/.gitlab/merge_request_templates/Default.md
@@ -0,0 +1,19 @@
+## Summary
+
+(Describe what the merge request does)
+
+## Purpose
+
+(Describe why the merge request is useful, which use cases it addresses, which issue it fixes)
+
+## Checklist
+
+Please read
+https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/CONTRIBUTING.md
+before opening the merge request. In particular, check that:
+
+ - the subject for all commits is concise and explicative
+ - the message for all commits explain the reason for the change
+ - the source is properly formatted
+ - any relevant documentation is up to date
+ - you have added unit tests if applicable