Skip to content

Commit df3188b

Browse files
authored
Add Codeowners and issue templates (#1)
Signed-off-by: Alexander Dahmen <[email protected]>
1 parent c6ea131 commit df3188b

File tree

5 files changed

+94
-0
lines changed

5 files changed

+94
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @stackitcloud/developer-tools
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
name: Bug report
3+
about: Report a bug in the STACKIT pulumi provider
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
## Description
11+
12+
*Please add a clear and concise description of what the bug is.*
13+
14+
## Steps to reproduce
15+
<!-- Please add an example pulumi config below which helps us reproduce the behavior. -->
16+
17+
```pulumi
18+
# put your pulumi example here
19+
# ...
20+
```
21+
22+
<!-- Please provide us with the steps to reproduce the behavior. -->
23+
24+
1. Run `pulumi ...`
25+
2. ...
26+
27+
## Actual behavior
28+
29+
*Please describe the current behavior of the STACKIT pulumi provider. Don't forget to add detailed information like error messages.*
30+
31+
## Expected behavior
32+
33+
*Please describe the behavior which you would expect from the STACKIT pulumi provider in that case.*
34+
35+
## Environment
36+
- OS:
37+
- pulumi version (see `pulumi --version`): `vX.X.X`
38+
- Version of the STACKIT pulumi provider: `vX.X.X`
39+
40+
**Additional information**
41+
42+
*Feel free to add any additional information here.*
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for the STACKIT pulumi provider
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
## Problem description
11+
12+
*Is your feature request related to a problem? If so, please give us a clear and concise description of what the problem is.
13+
Example: I'm always frustrated when [...]*
14+
15+
## Proposed solution
16+
17+
*A clear and concise description of what you want to happen.*
18+
19+
<!-- Please add an example pulumi config below which helps us understand your proposed solution. -->
20+
21+
```pulumi
22+
# put your pulumi example here
23+
# ...
24+
```
25+
26+
## Alternative solutions (optional)
27+
28+
*A clear and concise description of any alternative solutions or features you've considered. (optional)*
29+
30+
## Additional information
31+
32+
*Feel free to add any additional information here.*
33+

.github/pull_request_template.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Description
2+
3+
<!-- **Please link some issue here describing what you are trying to achieve.**
4+
5+
In case there is no issue present for your PR, please consider creating one.
6+
At least please give us some description what you are trying to achieve and why your change is needed. -->
7+
8+
relates to #1234
9+
10+
## Checklist
11+
12+
- [ ] Issue was linked above
13+
- [ ] Code format was applied: `make fmt`
14+
- [ ] Examples were added / adjusted (see `examples/` directory)
15+
- [ ] Unit tests got implemented or updated
16+
- [ ] Acceptance tests got implemented or updated
17+
- [x] Unit tests are passing: `make test` (will be checked by CI)
18+
- [x] No linter issues: `make lint` (will be checked by CI)

.gitignore

Whitespace-only changes.

0 commit comments

Comments
 (0)