summaryrefslogtreecommitdiff
path: root/json4cpp/.github/ISSUE_TEMPLATE
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 18:42:50 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 18:42:50 +0300
commit5fad10f89c485cfdc7b99011f07609f8871160d4 (patch)
tree1860b39753b652dfe54d3cbbc80c875f40198d1f /json4cpp/.github/ISSUE_TEMPLATE
parent292baed7ac0cf84263263966ed32ed113cae857f (diff)
parent9a737481aed085fd289f82dff1fa8c3c66627a7e (diff)
downloadProject-Tick-5fad10f89c485cfdc7b99011f07609f8871160d4.tar.gz
Project-Tick-5fad10f89c485cfdc7b99011f07609f8871160d4.zip
Add 'json4cpp/' from commit '9a737481aed085fd289f82dff1fa8c3c66627a7e'
git-subtree-dir: json4cpp git-subtree-mainline: 292baed7ac0cf84263263966ed32ed113cae857f git-subtree-split: 9a737481aed085fd289f82dff1fa8c3c66627a7e
Diffstat (limited to 'json4cpp/.github/ISSUE_TEMPLATE')
-rw-r--r--json4cpp/.github/ISSUE_TEMPLATE/bug.yaml95
-rw-r--r--json4cpp/.github/ISSUE_TEMPLATE/config.yml5
2 files changed, 100 insertions, 0 deletions
diff --git a/json4cpp/.github/ISSUE_TEMPLATE/bug.yaml b/json4cpp/.github/ISSUE_TEMPLATE/bug.yaml
new file mode 100644
index 0000000000..ed426675dd
--- /dev/null
+++ b/json4cpp/.github/ISSUE_TEMPLATE/bug.yaml
@@ -0,0 +1,95 @@
+name: Bug Report
+description: Create a bug report
+labels:
+ - 'kind: bug'
+body:
+ - type: markdown
+ attributes:
+ value: >
+ Thanks for taking the time to fill out this bug report!
+
+ Make sure you give it a short and specific **title** so that the report
+ is searchable and uniquely identifiable.
+
+ Note that this form is for bug reports only. Please
+ [open a discussion](https://github.com/nlohmann/json/discussions/new)
+ for questions, feature requests, or support requests.
+ **Please check the [FAQ](https://json.nlohmann.me/home/faq/) before
+ reporting an issue.** Common questions are answered there.
+ - type: textarea
+ id: summary
+ attributes:
+ label: Description
+ description: >
+ Please provide an abstract description of the issue to the developers,
+ and why you consider it to be a bug. Please include any specific links
+ to the documentation, JSON specification, or code.
+ validations:
+ required: true
+ - type: textarea
+ id: reproduce
+ attributes:
+ label: Reproduction steps
+ description: >
+ How do you trigger the bug? Please walk us through step by step. Be as
+ specific as possible.
+ validations:
+ required: true
+ - type: textarea
+ id: results
+ attributes:
+ label: Expected vs. actual results
+ description: >
+ Please describe what you expected to happen after the steps above and
+ what actually happened.
+ validations:
+ required: true
+ - type: textarea
+ id: code
+ attributes:
+ label: Minimal code example
+ description: >
+ If possible, provide a small and self-contained example that triggers
+ the bug. Please understand that we cannot analyze and debug large code
+ bases. Please do not paste screenshots here.
+ render: Shell
+ - type: textarea
+ id: output
+ attributes:
+ label: Error messages
+ description: >
+ Please provide any kind of error output (compilation errors, exception
+ messages, stack traces, etc.) which can help to diagnose the error.
+ render: Shell
+ - type: input
+ id: compiler
+ attributes:
+ label: Compiler and operating system
+ description: >
+ On which operating systems and compilers have you observed the issue?
+ Include as many relevant details about the environment you experienced
+ the bug in. Make sure you use a
+ [supported compiler](https://github.com/nlohmann/json#supported-compilers).
+ validations:
+ required: true
+ - type: input
+ id: version
+ attributes:
+ label: Library version
+ description: >
+ Which version of the library did you use? If it is a released version,
+ please enter the version number (e.g., 3.12.0). Otherwise, please enter
+ the commit hash. If you got the library from another source as the
+ GitHub repository (e.g., via a package manager), please also state
+ this.
+ validations:
+ required: true
+ - type: checkboxes
+ id: validation
+ attributes:
+ label: Validation
+ description: >
+ Please check these additional steps:
+ options:
+ - label: The bug also occurs if the latest version from the [`develop`](https://github.com/nlohmann/json/tree/develop) branch is used.
+ - label: I can successfully [compile and run the unit tests](https://github.com/nlohmann/json#execute-unit-tests).
diff --git a/json4cpp/.github/ISSUE_TEMPLATE/config.yml b/json4cpp/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000000..0e96633842
--- /dev/null
+++ b/json4cpp/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
+blank_issues_enabled: false
+contact_links:
+ - name: Ask a question
+ url: https://github.com/nlohmann/json/discussions
+ about: Ask questions and discuss with other community members