aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUli Heilmeier <uh@heilmeier.eu>2020-09-04 20:39:08 +0200
committerGerald Combs <gerald@wireshark.org>2020-09-06 17:15:40 +0000
commit30e13d77176ce4dd048033923e66b56ca51183f0 (patch)
treed036e63946d707053094d4d6a635f61411bdf0fa
parent43a85d674e68a1024ee6afc93d59d805d3e37108 (diff)
Gitlab: Add templates for issues
Adding templates for reporting a Bug and Feature Request Exclude .gitlab from checklicenses.py
-rw-r--r--.gitlab/issue_templates/Bug.md33
-rw-r--r--.gitlab/issue_templates/FeatureRequest.md10
-rwxr-xr-xtools/checklicenses.py3
3 files changed, 46 insertions, 0 deletions
diff --git a/.gitlab/issue_templates/Bug.md b/.gitlab/issue_templates/Bug.md
new file mode 100644
index 0000000000..c3707bb047
--- /dev/null
+++ b/.gitlab/issue_templates/Bug.md
@@ -0,0 +1,33 @@
+## Summary
+
+(Summarize the bug encountered concisely)
+
+
+## Steps to reproduce
+
+(How one can reproduce the issue - this is very important)
+
+
+## What is the current bug behavior?
+
+(What actually happens)
+
+
+## What is the expected correct behavior?
+
+(What you should see instead)
+
+
+## Sample capture file
+
+(If possible attach a sample capture file showing this issue)
+
+
+## Relevant logs and/or screenshots
+
+(Paste any relevant logs - please use code blocks (```) to format console output, logs, and code as it's very hard to read otherwise.)
+
+
+## Build information
+
+(In Wireshark, select Help->About Wireshark from the main menu. Or from the command line, run `tshark -v` or `wireshark -v`.)
diff --git a/.gitlab/issue_templates/FeatureRequest.md b/.gitlab/issue_templates/FeatureRequest.md
new file mode 100644
index 0000000000..8ffb54fe4f
--- /dev/null
+++ b/.gitlab/issue_templates/FeatureRequest.md
@@ -0,0 +1,10 @@
+## Description including problem, use cases, benefits, and/or goals
+
+## Links / references / protocol specifications
+
+## Sample capture
+
+(For dissector enhancments please attach a sample capture)
+
+
+/label ~enhancement
diff --git a/tools/checklicenses.py b/tools/checklicenses.py
index 3e1b04a5b8..2a97d16b51 100755
--- a/tools/checklicenses.py
+++ b/tools/checklicenses.py
@@ -145,6 +145,9 @@ PATH_SPECIFIC_ALLOWED_LICENSES = {
'tools/licensecheck.pl': [
'GPL (v2)'
],
+ '.gitlab/': [
+ 'UNKNOWN',
+ ],
}
def check_licenses(options, args):