mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-25 22:37:33 +00:00
Merge pull request #1379 from evantill/feature/workflows
chore: fix details in github workflows
This commit is contained in:
commit
aad2a9e19f
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user