Skip to content

Commit 96209e4

Browse files
committed
#236 - Update repository after GitHub issues migration.
1 parent f5b13e6 commit 96209e4

File tree

5 files changed

+55
-9
lines changed

5 files changed

+55
-9
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 1 deletion
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/DATALDAP).
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

Lines changed: 47 additions & 0 deletions
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:
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/create-or-update-project-card@v1.1.2
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/create-or-update-project-card@v1.1.2
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/create-or-update-project-card@v1.1.2
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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,17 @@ If you are just starting out with Spring, try one of the https://spring.io/guide
102102
* If you are upgrading, check out the https://docs.spring.io/spring-data/ldap/docs/current/changelog.txt[changelog] for "`new and noteworthy`" features.
103103
* Ask a question - we monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-data[`spring-data-ldap`].
104104
You can also chat with the community on https://gitter.im/spring-projects/spring-data[Gitter].
105-
* Report bugs with Spring Data LDAP at https://jira.spring.io/browse/DATALDAP[jira.spring.io/browse/DATALDAP].
105+
* Report bugs with Spring Data LDAP at https://github.com/spring-projects/spring-data-ldap/issues[github.com/spring-projects/spring-data-ldap/issues].
106106

107107
== Reporting Issues
108108

109-
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:
109+
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:
110110

111111
* Before you log a bug, please search the
112-
https://jira.spring.io/browse/DATALDAP[issue tracker] to see if someone has already reported the problem.
113-
* If the issue doesn’t already exist, https://jira.spring.io/browse/DATALDAP[create a new issue].
112+
https://github.com/spring-projects/spring-data-ldap/issues[issue tracker] to see if someone has already reported the problem.
113+
* If the issue doesn’t already exist, https://github.com/spring-projects/spring-data-ldap/issues/new[create a new issue].
114114
* 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.
115-
* If you need to paste code, or include a stack trace use JIRA `{code}…{code}` escapes before and after your text.
115+
* If you need to paste code, or include a stack trace use Markdown +++```+++ escapes before and after your text.
116116
* 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.
117117

118118
== Building from Source

src/main/asciidoc/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ifdef::backend-epub3[:front-cover-image: image:epub-cover.png[Front Cover,1050,1
77
:spring-framework-docs: https://docs.spring.io/spring/docs/{springVersion}/spring-framework-reference/
88

99

10-
(C) 2008-2019 The original authors.
10+
(C) 2008-2020 The original authors.
1111

1212
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.
1313

src/main/asciidoc/preface.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ Professional, from-the-source support, with guaranteed response time, is availab
5757
[[get-started:up-to-date]]
5858
=== Following Development
5959

60-
For information on the Spring Data LDAP source code repository, nightly builds, and snapshot artifacts, see the https://projects.spring.io/spring-data-ldap/[Spring Data LDAP homepage]. 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[Stackoverflow]. To follow developer activity, look for the mailing list information on the Spring Data LDAP homepage. If you encounter a bug or want to suggest an improvement, please create a ticket on the Spring Data issue https://jira.spring.io/browse/DATALDAP[tracker]. To stay up-to-date with the latest news and announcements in the Spring ecosystem, subscribe to the Spring Community https://spring.io[Portal]. Finally, you can follow the Spring https://spring.io/blog[blog] or the project team on Twitter (https://twitter.com/SpringData[SpringData]).
60+
For information on the Spring Data LDAP source code repository, nightly builds, and snapshot artifacts, see the https://projects.spring.io/spring-data-ldap/[Spring Data LDAP homepage]. 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[Stackoverflow]. To follow developer activity, look for the mailing list information on the Spring Data LDAP homepage. If you encounter a bug or want to suggest an improvement, please create a ticket on the Spring Data issue https://github.com/spring-projects/spring-data-ldap/issues[tracker]. To stay up-to-date with the latest news and announcements in the Spring ecosystem, subscribe to the Spring Community https://spring.io[Portal]. Finally, you can follow the Spring https://spring.io/blog[blog] or the project team on Twitter (https://twitter.com/SpringData[SpringData]).
6161

6262
[[get-started:project-metadata]]
6363
=== Project Metadata
6464

6565
* Version Control: https://github.com/spring-projects/spring-data-ldap
66-
* Bugtracker: https://jira.spring.io/browse/DATALDAP
66+
* Bugtracker: https://github.com/spring-projects/spring-data-ldap/issues
6767
* Release repository: https://repo.spring.io/libs-release
6868
* Milestone repository: https://repo.spring.io/libs-milestone
6969
* Snapshot repository: https://repo.spring.io/libs-snapshot

0 commit comments

Comments
 (0)