Skip to content

Commit cd9fef6

Browse files
committed
chore: doc
1 parent b3f85f5 commit cd9fef6

File tree

3 files changed

+57
-1
lines changed

3 files changed

+57
-1
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: "🐞 Bug Report"
2+
description: Report a reproducible problem or error.
3+
title: "[Bug]: "
4+
labels: [bug]
5+
body:
6+
- type: input
7+
id: plugin-version
8+
attributes:
9+
label: "Plugin Version"
10+
description: "Which version of the plugin are you using?"
11+
placeholder: "e.g. 1.2.3"
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: dependencies
17+
attributes:
18+
label: "Dependencies"
19+
description: |
20+
Please provide your dependency tree.
21+
For Gradle: `./gradlew dependencies`
22+
For Maven: `./mvnw dependency:tree`
23+
render: shell
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
id: description
29+
attributes:
30+
label: "Description of the Problem"
31+
description: "What happened? What did you expect to happen instead?"
32+
placeholder: "Clear, detailed description of the issue."
33+
validations:
34+
required: true
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "💡 Feature Request"
2+
description: Suggest an idea or improvement for this project.
3+
title: "[Feature]: "
4+
labels: [enhancement]
5+
body:
6+
- type: textarea
7+
id: use-case
8+
attributes:
9+
label: "Use Case / Motivation"
10+
description: "Clearly describe your use case or the problem this feature would solve."
11+
placeholder: "Explain why this feature is needed."
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: proposal
17+
attributes:
18+
label: "Proposed Solution"
19+
description: "How would you like this feature to work?"
20+
placeholder: "Describe your proposed implementation or behavior."
21+
validations:
22+
required: false

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
**WireMock Spring Boot** library drastically simplifies WireMock configuration in a **Spring Boot** and **JUnit** application.
1919

20-
See the [WireMock Spring Boot doc page](https://wiremock.org/docs/spring-boot/) for installation and usage details. There are also [running examples of use cases](https://github.com/wiremock/wiremock-spring-boot/tree/main/src/test/java/usecases).
20+
See the [WireMock Spring Boot doc page](https://wiremock.org/docs/spring-boot/) for installation and usage details. There are also [running examples of use cases](https://github.com/wiremock/wiremock-spring-boot/tree/main/wiremock-spring-boot/src/test/java/usecases).
2121

2222
## Highlights
2323

0 commit comments

Comments
 (0)