1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-07 10:50:53 +00:00

chore: label "p:backlog" on issue automatically close issue with comment

This commit is contained in:
Arnaud Roques 2023-03-31 17:55:18 +02:00
parent 81bd00e252
commit 72599ce706

View File

@ -0,0 +1,27 @@
on:
issues:
types: [labeled]
jobs:
comment:
if: github.event.label.name == 'p:backlog'
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
const welcomeMessage = `
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
})
- uses: peter-evans/close-issue@v2