Skip to content

Commit bf30d5c

Browse files
authored
Revise Issue Template, Etc.
* Fix PR Template.
1 parent ea9601e commit bf30d5c

File tree

8 files changed

+91
-32
lines changed

8 files changed

+91
-32
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: 'type: bug, status: waiting-for-triage'
6+
assignees: ''
7+
8+
---
9+
10+
**In what version(s) of Spring for Apache Kafka are you seeing this issue?**
11+
12+
For example:
13+
14+
2.8.2
15+
16+
Between 2.7.0 and 2.8.2
17+
18+
**Describe the bug**
19+
20+
A clear and concise description of what the bug is.
21+
Do not create an issue to ask a question; see below.
22+
23+
**To Reproduce**
24+
25+
Steps to reproduce the behavior.
26+
27+
**Expected behavior**
28+
29+
A clear and concise description of what you expected to happen.
30+
31+
**Sample**
32+
33+
A link to a GitHub repository with a [minimal, reproducible, sample](https://stackoverflow.com/help/minimal-reproducible-example).
34+
35+
Reports that include a sample will take priority over reports that do not.
36+
At times, we may require a sample, so it is good to try and include a sample up front.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Community Support
4+
url: https://stackoverflow.com/questions/tagged/spring-kafka
5+
about: Please ask and answer questions on StackOverflow with the tag spring-kafka, or use the Discussions tab above.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: 'status: waiting-for-triage, type: enhancement'
6+
assignees: ''
7+
8+
---
9+
10+
**Expected Behavior**
11+
12+
<!--- Tell us how it should work -->
13+
14+
**Current Behavior**
15+
16+
<!--- Explain the difference from current behavior -->
17+
18+
**Context**
19+
20+
<!---
21+
How has this issue affected you?
22+
What are you trying to accomplish?
23+
What other alternatives have you considered?
24+
Are you aware of any workarounds?
25+
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!--
2+
Thanks for contributing to Spring for Apache Kafka.
3+
Please provide a brief description of your pull-request and reference any related issue numbers (prefix references with #) or StackOverflow questions.
4+
5+
See the [Contributor Guidelines for more information](https://github.com/spring-projects/spring-kafka/blob/main/CONTRIBUTING.adoc).
6+
In particular, ensure the first line of the first commit comment is limited to 50 characters.
7+
-->
File renamed without changes.

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ Spring for Apache Kafka [<img src="https://build.spring.io/plugins/servlet/witti
22
[![Join the chat at https://gitter.im/spring-projects/spring-kafka](https://badges.gitter.im/spring-projects/spring-kafka.svg)](https://gitter.im/spring-projects/spring-kafka?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
33
==================
44

5+
# Code of Conduct
6+
7+
Please see our [Code of conduct](https://github.com/spring-projects/.github/blob/master/CODE_OF_CONDUCT.md).
8+
9+
# Reporting Security Vulnerabilities
10+
11+
Please see our [Security policy](https://github.com/spring-projects/spring-kafka/security/policy).
12+
513
# Checking out and Building
614

715
To check out the project and build from source, do the following:
@@ -83,10 +91,4 @@ None of these is essential for a pull request, but they will all help.
8391

8492
# License
8593

86-
Spring Kafka is released under the terms of the Apache Software License Version 2.0 (see license.txt).
87-
88-
# Code of Conduct
89-
90-
This project adheres to the Contributor Covenant [code of conduct](./CODE_OF_CONDUCT.adoc).
91-
By participating, you are expected to uphold this code. Please report unacceptable behavior to
92-
94+
Spring Kafka is released under the terms of the Apache Software License Version 2.0 (see LICENSE.txt).

build.gradle

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,11 +289,14 @@ subprojects { subproject ->
289289
}
290290

291291
from("${rootProject.projectDir}/src/dist") {
292-
include 'license.txt'
293292
include 'notice.txt'
294293
into 'META-INF'
295294
expand(copyright: new Date().format('yyyy'), version: project.version)
296295
}
296+
from("${rootProject.projectDir}") {
297+
include 'LICENSE.txt'
298+
into 'META-INF'
299+
}
297300
}
298301

299302
tasks.withType(Javadoc) {
@@ -552,11 +555,15 @@ task distZip(type: Zip, dependsOn: [docsZip]) { //, schemaZip]) {
552555

553556
from('src/dist') {
554557
include 'readme.txt'
555-
include 'license.txt'
556558
include 'notice.txt'
557559
into "${baseDir}"
558560
}
559561

562+
from("$project.rootDir") {
563+
include 'LICENSE.txt'
564+
into "${baseDir}"
565+
}
566+
560567
from(zipTree(docsZip.archivePath)) {
561568
into "${baseDir}/docs"
562569
}

0 commit comments

Comments
 (0)