Skip to content

Commit

Permalink
Revise Issue Template etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
garyrussell authored and artembilan committed Feb 17, 2022
1 parent 8b2cc61 commit a3aedc6
Show file tree
Hide file tree
Showing 8 changed files with 86 additions and 32 deletions.
27 changes: 0 additions & 27 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,36 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'type: bug, status: waiting-for-triage'
assignees: ''

---

**In what version(s) of Spring AMQP are you seeing this issue?**

For example:

2.4.2

Between 2.3.0 and 2.4.2

**Describe the bug**

A clear and concise description of what the bug is.
Do not create an issue to ask a question; see below.

**To Reproduce**

Steps to reproduce the behavior.

**Expected behavior**

A clear and concise description of what you expected to happen.

**Sample**

A link to a GitHub repository with a [minimal, reproducible, sample](https://stackoverflow.com/help/minimal-reproducible-example).

Reports that include a sample will take priority over reports that do not.
At times, we may require a sample, so it is good to try and include a sample up front.
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Community Support
url: https://stackoverflow.com/questions/tagged/spring-amqp
about: Please ask and answer questions on StackOverflow with the tag spring-amqp, or use the Discussions tab above
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,25 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: 'status: waiting-for-triage, type: enhancement'
assignees: ''

---

**Expected Behavior**

<!--- Tell us how it should work -->

**Current Behavior**

<!--- Explain the difference from current behavior -->

**Context**

<!---
How has this issue affected you?
What are you trying to accomplish?
What other alternatives have you considered?
Are you aware of any workarounds?
-->
3 changes: 2 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
@@ -1,5 +1,6 @@
<!--
Thanks for contributing to Spring AMQP. Please provide a brief description of your pull-request and reference any related issue numbers (prefix references with #).
Thanks for contributing to Spring AMQP.
Please provide a brief description of your pull-request and reference any related issue numbers (prefix references with #).
See the [Contributor Guidelines for more information](https://github.com/spring-projects/spring-amqp/blob/main/CONTRIBUTING.adoc).
-->
File renamed without changes.
10 changes: 9 additions & 1 deletion README.md
Expand Up @@ -3,6 +3,14 @@ Spring AMQP [<img src="https://build.spring.io/plugins/servlet/wittified/build-s

This project provides support for using Spring and Java with [AMQP 0.9.1](https://www.rabbitmq.com/amqp-0-9-1-reference.html), and in particular [RabbitMQ](https://www.rabbitmq.com/).

# Code of Conduct

Please see our [Code of conduct](https://github.com/spring-projects/.github/blob/master/CODE_OF_CONDUCT.md).

# Reporting Security Vulnerabilities

Please see our [Security policy](https://github.com/spring-projects/spring-amqp/security/policy).

# Checking out and Building

To check out the project from [GitHub](https://github.com/SpringSource/spring-amqp) and build from source using [Gradle](https://gradle.org/), do the following:
Expand Down Expand Up @@ -119,4 +127,4 @@ None of these is essential for a pull request, but they will all help. They can

# License

Spring AMQP is released under the terms of the Apache Software License Version 2.0 (see license.txt).
Spring AMQP is released under the terms of the Apache Software License Version 2.0 (see LICENSE.txt).
12 changes: 9 additions & 3 deletions build.gradle
Expand Up @@ -323,11 +323,14 @@ subprojects { subproject ->
}

from("${rootProject.projectDir}/src/dist") {
include 'license.txt'
include 'notice.txt'
into 'META-INF'
expand(copyright: new Date().format('yyyy'), version: project.version)
}
from("${rootProject.projectDir}") {
include 'LICENSE.txt'
into 'META-INF'
}
}

check.dependsOn javadoc
Expand Down Expand Up @@ -656,12 +659,15 @@ task distZip(type: Zip, dependsOn: [docsZip, schemaZip]) {

from('src/dist') {
include 'README.md'
include 'apache-license.txt'
include 'epl-license.txt'
include 'notice.txt'
into "${baseDir}"
}

from("$project.rootDir") {
include 'LICENSE.txt'
into "${baseDir}"
}

from(zipTree(docsZip.archivePath)) {
into "${baseDir}/docs"
}
Expand Down

0 comments on commit a3aedc6

Please sign in to comment.