Skip to content

Commit 95634e9

Browse files
lipkaubrianbunke
authored andcommitted
Add template to new issue and new PR (#70)
1 parent f0375b6 commit 95634e9

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!-- Provide a general summary of the issue in the Title above -->
2+
3+
### Expected Behavior
4+
<!-- If you're describing a bug, tell us what should happen -->
5+
<!-- If you're suggesting a change/improvement, tell us how it should work -->
6+
7+
### Current Behavior
8+
<!-- If describing a bug, tell us what happens instead of the expected behavior. If screenshot are available/relevant, please attach them -->
9+
<!-- If suggesting a change/improvement, explain the difference from current behavior -->
10+
11+
### Possible Solution
12+
<!-- Not obligatory, but suggest a fix/reason for the bug, -->
13+
<!-- or ideas how to implement the addition or change -->
14+
15+
### Steps to Reproduce (for bugs)
16+
<!-- Provide a link to a live example, or an unambiguous set of steps to reproduce this bug. Include code to reproduce, if relevant -->
17+
1.
18+
2.
19+
3.
20+
4.
21+
22+
### Context
23+
<!-- How has this issue affected you? What are you trying to accomplish? -->
24+
<!-- Providing context helps us come up with a solution that is most useful in the real world -->
25+
26+
### Your Environment
27+
<!-- Include as many relevant details about the environment you experienced the bug in -->
28+
<!-- The following code snip is a recommendation. You can just paste the output here. -->
29+
> ```posh
30+
> Get-Module ConfluencePS -ListAvailable | select version
31+
> $PSVersionTable
32+
> ```

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!-- Provide a general summary of your changes in the Title above -->
2+
3+
### Description
4+
<!-- Describe your changes in detail -->
5+
6+
### Motivation and Context
7+
<!-- Why is this change required? What problem does it solve? -->
8+
<!-- If it fixes an open issue, please link to the issue here as follows: -->
9+
<!-- closes #1, closes #2, ... -->
10+
11+
### Types of changes
12+
<!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
13+
- [ ] Bug fix (non-breaking change which fixes an issue)
14+
- [ ] New feature (non-breaking change which adds functionality)
15+
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
16+
17+
### Checklist:
18+
<!-- Go over all the following points, and put an `x` in all the boxes that apply. -->
19+
<!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
20+
- [ ] My code follows the code style of this project.
21+
- [ ] I have added Pester Tests that describe what my changes should do.
22+
- [ ] I have updated the documentation accordingly.

0 commit comments

Comments
 (0)