Skip to content

Commit

Permalink
updated github templates [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
marzer committed Jan 5, 2022
1 parent 5aec8a3 commit 20d3c13
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
name: Bug report
about: Found a bug? Help me squash it.
about: Regular ol' bugs.
title: ''
labels: bug
labels: [ "bug" ]
assignees: marzer

---

<!--
Replace the HTML comments below with the requested information.
Please DO NOT delete this template and roll your own!
Please don't delete this template and roll your own!
Thanks for contributing!
-->
Expand All @@ -20,7 +20,7 @@ assignees: marzer
**toml++ version and/or commit hash:**
<!--
If you're using the single-header version of the library, the version number is right at the top of the file.
Otherwise you can find it by opening toml++/toml_version.h; it'll be represented by three defines -
Otherwise you can find it by opening toml++/impl/version.h; it'll be represented by three defines -
TOML_LIB_MAJOR, TOML_LIB_MINOR and TOML_LIB_PATCH.
If you're not using any particular release and are instead just living large at HEAD of master, the commit hash
Expand Down Expand Up @@ -53,7 +53,7 @@ assignees: marzer
**Library configuration overrides:**
<!--
If you've explicitly set any of the library configuration macros,
list them here (e.g. TOML_EXCEPTIONS=0, TOML_UNRELEASED_FEATURES=1, etc.)
list them here (e.g. TOML_EXCEPTIONS=0, TOML_ENABLE_UNRELEASED_FEATURES=1, etc.)
-->


Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ assignees: marzer

<!--
Replace the HTML comments below with the requested information.
Please DO NOT delete this template and roll your own!
Please don't delete this template and roll your own!
Thanks for contributing!
-->
Expand Down
55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/spec_bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
name: TOML spec conformance bug
about: Bugs relating to the library's TOML spec conformance (or lack thereof).
title: ''
labels: [ "bug", "TOML spec" ]
assignees: marzer

---

<!--
Replace the HTML/TOML comments below with the requested information.
Please don't delete this template and roll your own!
Thanks for contributing!
-->


## The non-conforming TOML snippet
```toml

# your TOML here

```


## What you expected
<!--
e.g. a link to, or snippet from, the TOML spec, or some reasonable description thereof
-->


## What you got
<!--
e.g toml-test output
-->


## Environment
**toml++ version and/or commit hash:**
<!--
If you're using the single-header version of the library, the version number is right at the top of the file.
Otherwise you can find it by opening toml++/impl/version.h; it'll be represented by three defines -
TOML_LIB_MAJOR, TOML_LIB_MINOR and TOML_LIB_PATCH.
If you're not using any particular release and are instead just living large at HEAD of master, the commit hash
would be super helpful too, though it's not critical.
-->

**Any other useful information:**
<!--
Anything else you think will help me fix the issue. Since this report is for general spec conformance handling
you probably don't need to worry about compiler versions, compilation flags, et cetera, though include them if
you feel they're relevant.
-->

0 comments on commit 20d3c13

Please sign in to comment.