Skip to content

Commit 06218d3

Browse files
committed
doc: add issue and PR templates
1 parent de56b07 commit 06218d3

File tree

4 files changed

+95
-0
lines changed

4 files changed

+95
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Bug Report
3+
about: Create a report to help us improve this project
4+
5+
---
6+
7+
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks!
8+
-->
9+
10+
11+
**What happened**:
12+
13+
**What you expected to happen**:
14+
15+
**How to reproduce it**:
16+
17+
**Anything else we need to know?**:
18+
19+
**Environment**:
20+
- CSI Spec version:
21+
- Kubernetes version (use `kubectl version`):
22+
- Others:

.github/ISSUE_TEMPLATE/enhancement.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Enhancement Request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
8+
**Is your feature request related to a problem?/Why is this needed**
9+
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
10+
11+
**Describe the solution you'd like in detail**
12+
<!-- A clear and concise description of what you want to happen. -->
13+
14+
**Describe alternatives you've considered**
15+
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
16+
17+
**Additional context**
18+
<!-- Add any other context or screenshots about the feature request here. -->

.github/ISSUE_TEMPLATE/support.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Support Request
3+
about: Ask questions about this project
4+
5+
---
6+
7+
<!--
8+
STOP -- PLEASE READ!
9+
10+
GitHub is not the right place for support requests.
11+
12+
If you're looking for help, post your question on the [Kubernetes Slack ](http://slack.k8s.io/) Sig-Storage Channel.
13+
14+
If the matter is security related, please disclose it privately via https://kubernetes.io/security/.
15+
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!-- Thanks for sending a pull request! Here are some tips for you:
2+
3+
1. If this is your first time, please read our contributor guidelines: https://git.k8s.io/community/contributors/guide#your-first-contribution and developer guide https://git.k8s.io/community/contributors/devel/development.md#development-guide
4+
2. Follow the instructions for writing a release note: https://git.k8s.io/community/contributors/guide/release-notes.md
5+
3. If the PR is unfinished, see how to mark it: https://git.k8s.io/community/contributors/guide/pull-requests.md#marking-unfinished-pull-requests
6+
-->
7+
8+
**What type of PR is this?**
9+
> Uncomment only one ` /kind <>` line, hit enter to put that in a new line, and remove leading whitespaces from that line:
10+
>
11+
> /kind api-change
12+
> /kind bug
13+
> /kind cleanup
14+
> /kind design
15+
> /kind documentation
16+
> /kind failing-test
17+
> /kind feature
18+
> /kind flake
19+
20+
**What this PR does / why we need it**:
21+
22+
**Which issue(s) this PR fixes**:
23+
<!--
24+
*Automatically closes linked issue when PR is merged.
25+
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
26+
_If PR is about `failing-tests or flakes`, please post the related issues/tests in a comment and do not use `Fixes`_*
27+
-->
28+
Fixes #
29+
30+
**Special notes for your reviewer**:
31+
32+
**Does this PR introduce a user-facing change?**:
33+
<!--
34+
If no, just write "NONE" in the release-note block below.
35+
If yes, a release note is required:
36+
Enter your extended release note in the block below. If the PR requires additional action from users switching to the new release, include the string "action required".
37+
-->
38+
```release-note
39+
none
40+
```

0 commit comments

Comments
 (0)