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 issue templates #1639

Merged
merged 8 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/1_ask-a-question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Ask a question
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
about: Use this template for everything that is not a bug or feature request
title: ''
labels: help wanted, question
assignees: ''

---


26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/2_bug-or-performance-issue-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: Bug or performance issue report
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
about: Create a report to help us improve oneDPL
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
A clear and concise description of what the bug or performance issue is.

**To Reproduce**
Steps to reproduce the behavior:
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved

The following information might be useful:
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
- CMake command: [e.g.cmake -DCMAKE_CXX_COMPILER=icpx -DCMAKE_BUILD_TYPE=release -DONEDPL_PAR_BACKEND=tbb]
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
- oneDPL version: [e.g. 2022.6.0 or 224acf7423ded15d34b53429d99248c3d308b685]
Report oneDPL version and githash. If it is a regression, report githash for the last known good revision.
- Compiler: [e.g. Intel(R) oneAPI DPC++/C++ Compiler 2023.1.0 (2023.1.0.20230320)]
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved

**Expected behavior**
A clear and concise description of what you expected to happen.

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/3_feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
about: Suggest an idea for oneDPL
title: ''
labels: feature_request
assignees: ''

---

**Summary**
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
A clear and concise description of the request.

**Problem statement**
Describe the problem you are trying to solve.

**Preferred solution**
Document your thoughts on what solution may look like.
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved

**Additional context**
Add any other context about the feature request here.
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/4_documentation_change.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Documentation change request
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
about: Report documentation issue or request documentation changes
title: ''
labels: documentation
assignees: ''

---

**Summary**
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
Include a short summary of the issue or request.
See the sections below
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
for factors important for a documentation
issue.

**URLs**
Include pointers to pages that are impacted.

**Additional details**
Provide a detailed description of the expected changes in documentation
timmiesmith marked this conversation as resolved.
Show resolved Hide resolved
and suggestions you have.
Loading