Merge pull request #1379 from evantill/feature/workflows

chore: fix details in github workflows
This commit is contained in:
PlantUML 2023-04-03 16:08:36 +02:00 committed by GitHub
commit aad2a9e19f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -84,7 +84,7 @@ jobs:
uses: actions/checkout@v3
- name: Set up java
uses: actions/setup-java@v3.10.0
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java_version }}
distribution: temurin
@ -114,7 +114,7 @@ jobs:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Set up java
uses: actions/setup-java@v3.10.0
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
@ -164,7 +164,7 @@ jobs:
uses: actions/checkout@v3
- name: Set up java
uses: actions/setup-java@v3.10.0
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin

View File

@ -3,7 +3,7 @@ on:
types: [labeled]
jobs:
comment:
close-and-put-in-backlog:
if: github.event.label.name == 'p:backlog'
runs-on: ubuntu-latest
steps:
@ -14,15 +14,15 @@ jobs:
Your issue is now part of the official [backlog](https://github.com/orgs/plantuml/projects/4).
For technical reason, it has been put at close state but it's really still open for us.
You can by the way go on and put any comment in this issue.
The main reason why we put this issue in the backlog is that we try to group issues together so that we fix them together, as similar issues often impact the same code area.
Please be patient, but stay tuned! 🙂`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: welcomeMessage
body: welcomeMessage
})
- uses: peter-evans/close-issue@v2
- uses: actions/add-to-project@v0.4.1