1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-29 06:30:48 +00:00

chore: use unique jobs id

Github workflow jobs should be unique across all jobs. HAs a default naming convention, use the workflow file basename.
This commit is contained in:
Eric Vantillard 2023-04-03 13:04:42 +02:00
parent 6fec6ea27e
commit a299d6b4c5

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