Skip to content

Commit ac45422

Browse files
committed
#2263 - Update repository after GitHub issues migration.
1 parent fa5906c commit ac45422

File tree

5 files changed

+55
-12
lines changed

5 files changed

+55
-12
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/DATACMNS).
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

+6-9
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,17 @@ If you are just starting out with Spring, try one of the https://spring.io/guide
5959
* If you are upgrading, check out the https://docs.spring.io/spring-data/commons/docs/current/changelog.txt[changelog] for "`new and noteworthy`" features.
6060
* Ask a question - we monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-data[`spring-data`].
6161
You can also chat with the community on https://gitter.im/spring-projects/spring-data[Gitter].
62-
* Report bugs with Spring Data Commons at https://jira.spring.io/browse/DATACMNS[jira.spring.io/browse/DATACMNS].
62+
* Report bugs with Spring Data Commons at https://github.com/spring-projects/spring-data-commons/issues[github.com/spring-projects/spring-data-commons/issues].
6363

6464
== Reporting Issues
6565

66-
Spring Data uses JIRA as issue tracking system to record bugs and
67-
feature requests. If you want to raise an issue, please follow the
68-
recommendations below:
66+
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:
6967

7068
* Before you log a bug, please search the
71-
https://jira.spring.io/browse/DATACMNS[issue tracker] to see if someone has already reported the problem.
72-
* If the issue doesn’t already exist, https://jira.spring.io/browse/DATACMNS[create a new issue].
73-
* 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
74-
version.
75-
* If you need to paste code, or include a stack trace use JIRA `{code}…{code}` escapes before and after your text.
69+
https://github.com/spring-projects/spring-data-commons/issues[issue tracker] to see if someone has already reported the problem.
70+
* If the issue doesn’t already exist, https://github.com/spring-projects/spring-data-commons/issues/new[create a new issue].
71+
* 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.
72+
* If you need to paste code, or include a stack trace use Markdown +++```+++ escapes before and after your text.
7673
* 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.
7774

7875
== Building from Source

src/main/asciidoc/index.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Oliver Gierke; Thomas Darimont; Christoph Strobl; Mark Pollack; Thomas Risberg;
44
:revdate: {localdate}
55
ifdef::backend-epub3[:front-cover-image: image:epub-cover.png[Front Cover,1050,1600]]
66

7-
(C) 2008-2019 The original authors.
7+
(C) 2008-2021 The original authors.
88

99
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.
1010

src/main/asciidoc/preface.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Spring Data Commons project applies core Spring concepts to the development
66
== Project Metadata
77

88
* Version control: https://github.com/spring-projects/spring-data-commons
9-
* Bugtracker: https://jira.spring.io/browse/DATACMNS
9+
* Bugtracker: ttps://github.com/spring-projects/spring-data-commons/issues
1010
* Release repository: https://repo.spring.io/libs-release
1111
* Milestone repository: https://repo.spring.io/libs-milestone
1212
* Snapshot repository: https://repo.spring.io/libs-snapshot

0 commit comments

Comments
 (0)