Skip to content

Commit 7e8da75

Browse files
committed
#182 - Update repository after GitHub issues migration.
1 parent f668614 commit 7e8da75

File tree

5 files changed

+55
-9
lines changed

5 files changed

+55
-9
lines changed

.github/PULL_REQUEST_TEMPLATE.md

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ Make sure that:
66
-->
77

88
- [ ] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc).
9-
- [ ] There is a ticket in the bug tracker for the project in our [JIRA](https://jira.spring.io/browse/DATACASS).
109
- [ ] You use the code formatters provided [here](https://github.com/spring-projects/spring-data-build/tree/master/etc/ide) and have them applied to your changes. Don’t submit any formatting related changes.
1110
- [ ] You submit test cases (unit or integration tests) that back your changes.
1211
- [ ] You added yourself as author in the headers of the classes you touched. Amend the date range in the Apache license header if needed. For new types, add the license header (copy from another file and set the current year only).

.github/workflows/project.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# GitHub Actions to automate GitHub issues for Spring Data Project Management
2+
3+
name: Spring Data GitHub Issues
4+
5+
on:
6+
issues:
7+
types: [opened, edited, reopened]
8+
issue_comment:
9+
types: [created]
10+
pull_request_target:
11+
types: [opened, edited, reopened]
12+
13+
jobs:
14+
Inbox:
15+
runs-on: ubuntu-latest
16+
if: github.repository_owner == 'spring-projects' && (github.event.action == 'opened' || github.event.action == 'reopened') && github.event.pull_request == null
17+
steps:
18+
- name: Create or Update Issue Card
19+
uses: peter-evans/[email protected]
20+
with:
21+
project-name: 'Spring Data'
22+
column-name: 'Inbox'
23+
project-location: 'spring-projects'
24+
token: ${{ secrets.GH_ISSUES_TOKEN_SPRING_DATA }}
25+
Pull-Request:
26+
runs-on: ubuntu-latest
27+
if: github.repository_owner == 'spring-projects' && (github.event.action == 'opened' || github.event.action == 'reopened') && github.event.pull_request != null
28+
steps:
29+
- name: Create or Update Pull Request Card
30+
uses: peter-evans/[email protected]
31+
with:
32+
project-name: 'Spring Data'
33+
column-name: 'Review pending'
34+
project-location: 'spring-projects'
35+
issue-number: ${{ github.event.pull_request.number }}
36+
token: ${{ secrets.GH_ISSUES_TOKEN_SPRING_DATA }}
37+
Feedback-Provided:
38+
runs-on: ubuntu-latest
39+
if: github.repository_owner == 'spring-projects' && github.event.action == 'created' && contains(join(github.event.issue.labels.*.name, ', '), 'waiting-for-feedback')
40+
steps:
41+
- name: Update Project Card
42+
uses: peter-evans/[email protected]
43+
with:
44+
project-name: 'Spring Data'
45+
column-name: 'Feedback provided'
46+
project-location: 'spring-projects'
47+
token: ${{ secrets.GH_ISSUES_TOKEN_SPRING_DATA }}

README.adoc

+5-5
Original file line numberDiff line numberDiff line change
@@ -119,17 +119,17 @@ If you are just starting out with Spring, try one of the https://spring.io/guide
119119
* If you are upgrading, check out the https://docs.spring.io/spring-data/cassandra/docs/current/changelog.txt[changelog] for "`new and noteworthy`" features.
120120
* Ask a question - we monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-data[`spring-data-cassandra`].
121121
You can also chat with the community on https://gitter.im/spring-projects/spring-data[Gitter].
122-
* Report bugs with Spring Data Cassandra at https://jira.spring.io/browse/DATACASS[jira.spring.io/browse/DATACASS].
122+
* Report bugs with Spring Data for Apache Cassandra at https://github.com/spring-projects/spring-data-cassandra/issues[github.com/spring-projects/spring-data-cassandra/issues].
123123

124124
== Reporting Issues
125125

126-
Spring Data uses JIRA as issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below:
126+
Spring Data uses GitHub as issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below:
127127

128128
* Before you log a bug, please search the
129-
https://jira.spring.io/browse/DATACASS[issue tracker] to see if someone has already reported the problem.
130-
* If the issue doesn’t already exist, https://jira.spring.io/browse/DATACASS[create a new issue].
129+
https://github.com/spring-projects/spring-data-cassandra/issues[issue tracker] to see if someone has already reported the problem.
130+
* If the issue does not already exist, https://github.com/spring-projects/spring-data-cassandra/issues/new[create a new issue].
131131
* Please provide as much information as possible with the issue report, we like to know the version of Spring Data that you are using and JVM version.
132-
* If you need to paste code, or include a stack trace use JIRA `{code}…{code}` escapes before and after your text.
132+
* If you need to paste code, or include a stack trace use Markdown +++```+++ escapes before and after your text.
133133
* If possible try to create a test-case or project that replicates the issue. Attach a link to your code or a compressed file containing your code.
134134

135135
== Building from Source

src/main/asciidoc/index.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ifdef::backend-epub3[:front-cover-image: image:epub-cover.png[Front Cover,1050,1
99
:tabsize: 2
1010
:spring-framework-docs: https://docs.spring.io/spring/docs/{springVersion}/spring-framework-reference/
1111

12-
(C) 2008-2020 The original author(s).
12+
(C) 2008-2021 The original author(s).
1313

1414
NOTE: Copies of this document may be made for your own use and for distribution to others, provided that you do not charge any fee for such copies and further provided that each copy contains this Copyright Notice, whether distributed in print or electronically.
1515

src/main/asciidoc/preface.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ For information on the Spring Data for Apache Cassandra source code repository,
8787
You can help make Spring Data best serve the needs of the Spring community by interacting with developers through the community on https://stackoverflow.com/questions/tagged/spring-data[Stack Overflow].
8888
To follow developer activity, look for the mailing list information on the Spring Data for Apache Cassandra home page.
8989
If you encounter a bug or want to suggest an improvement, please create a ticket on the Spring Data issue
90-
https://jira.spring.io/browse/DATACASS[tracker].
90+
https://github.com/spring-projects/spring-data-cassandra/issues[tracker].
9191
To stay up-to-date with the latest news and announcements in the Spring ecosystem, subscribe to the Spring Community https://spring.io[Portal].
9292
Finally, you can follow the Spring https://spring.io/blog[blog] or the project team on Twitter (https://twitter.com/SpringData[SpringData]).
9393

9494
[[get-started:project-metadata]]
9595
=== Project Metadata
9696

9797
* Version Control: https://github.com/spring-projects/spring-data-cassandra
98-
* Bugtracker: https://jira.spring.io/browse/DATACASS
98+
* Bugtracker: https://github.com/spring-projects/spring-data-cassandra/issues
9999
* Release repository: https://repo.spring.io/libs-release
100100
* Milestone repository: https://repo.spring.io/libs-milestone
101101
* Snapshot repository: https://repo.spring.io/libs-snapshot

0 commit comments

Comments
 (0)