2 changed files with 58 additions and 0 deletions
@ -0,0 +1,11 @@
@@ -0,0 +1,11 @@
|
||||
<!-- |
||||
|
||||
Thank you for proposing a pull request. This template will guide you through the essential steps necessary for a pull request. |
||||
Make sure that: |
||||
|
||||
--> |
||||
|
||||
- [ ] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc). |
||||
- [ ] 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. |
||||
- [ ] You submit test cases (unit or integration tests) that back your changes. |
||||
- [ ] 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). |
||||
@ -0,0 +1,47 @@
@@ -0,0 +1,47 @@
|
||||
# GitHub Actions to automate GitHub issues for Spring Data Project Management |
||||
|
||||
name: Spring Data GitHub Issues |
||||
|
||||
on: |
||||
issues: |
||||
types: [opened, edited, reopened] |
||||
issue_comment: |
||||
types: [created] |
||||
pull_request_target: |
||||
types: [opened, edited, reopened] |
||||
|
||||
jobs: |
||||
Inbox: |
||||
runs-on: ubuntu-latest |
||||
if: github.repository_owner == 'spring-projects' && (github.event.action == 'opened' || github.event.action == 'reopened') && github.event.pull_request == null |
||||
steps: |
||||
- name: Create or Update Issue Card |
||||
uses: peter-evans/create-or-update-project-card@v1.1.2 |
||||
with: |
||||
project-name: 'Spring Data' |
||||
column-name: 'Inbox' |
||||
project-location: 'spring-projects' |
||||
token: ${{ secrets.GH_ISSUES_TOKEN_SPRING_DATA }} |
||||
Pull-Request: |
||||
runs-on: ubuntu-latest |
||||
if: github.repository_owner == 'spring-projects' && (github.event.action == 'opened' || github.event.action == 'reopened') && github.event.pull_request != null |
||||
steps: |
||||
- name: Create or Update Pull Request Card |
||||
uses: peter-evans/create-or-update-project-card@v1.1.2 |
||||
with: |
||||
project-name: 'Spring Data' |
||||
column-name: 'Review pending' |
||||
project-location: 'spring-projects' |
||||
issue-number: ${{ github.event.pull_request.number }} |
||||
token: ${{ secrets.GH_ISSUES_TOKEN_SPRING_DATA }} |
||||
Feedback-Provided: |
||||
runs-on: ubuntu-latest |
||||
if: github.repository_owner == 'spring-projects' && github.event.action == 'created' && contains(join(github.event.issue.labels.*.name, ', '), 'waiting-for-feedback') |
||||
steps: |
||||
- name: Update Project Card |
||||
uses: peter-evans/create-or-update-project-card@v1.1.2 |
||||
with: |
||||
project-name: 'Spring Data' |
||||
column-name: 'Feedback provided' |
||||
project-location: 'spring-projects' |
||||
token: ${{ secrets.GH_ISSUES_TOKEN_SPRING_DATA }} |
||||
Loading…
Reference in new issue