Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a Question issue template #687

Merged
merged 4 commits into from
Apr 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/cxx20-feature.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ assignees: ''

**NOTE**
This issue template is for STL maintainers only.
Please use the Bug Report issue template instead.
Please use the Bug Report template instead.


[PAPER_NUMBER](https://wg21.link/PAPER_NUMBER) PAPER_TITLE
Expand Down
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Question
about: Ask a question about this STL implementation
title: ""
labels: question
assignees: ''

---

Instructions
============
Here, you can ask a question about this STL implementation, and a maintainer
will answer. Please read the examples below, then delete all of this text and
replace it with your question. If you aren't sure whether a question is
on-topic, just go ahead and ask it! :-)

On-Topic Examples
-----------------
* What is this code in the STL doing? You can link to the relevant code:
https://help.github.com/en/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet
* What are the preferred conventions for writing something?
* What are the maintainers planning to do in the future?
* Would the maintainers be interested in specific enhancements?
StephanTLavavej marked this conversation as resolved.
Show resolved Hide resolved

Off-Topic Examples
------------------
* Questions about non-STL components, such as the compiler, the CRT,
the Windows API, the Visual Studio IDE, etc.
* Questions about how to use the STL or C++ in general. For such questions,
consider https://stackoverflow.com or https://www.reddit.com/r/cpp_questions/ .
* Questions about whether you've encountered a bug in the STL. Instead of this
Question template, please use the Bug Report template, because we'll need
a command-line test case and the other information requested there.