25 lines
933 B
YAML
25 lines
933 B
YAML
name: "Add missing log comment"
|
|
on:
|
|
issues:
|
|
types: [labeled]
|
|
|
|
jobs:
|
|
comment:
|
|
if: contains(github.event.issue.labels.*.name, 'missing-log')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/github-script@v7
|
|
with:
|
|
script: |
|
|
github.rest.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: `Hello, I'm an automated bot. \n\n
|
|
Please attach a log file to this issue as it is required to properly diagnose the problem. \n\n
|
|
Logs help verify versions, inspect for errors, prevent duplicate reports, etc. \n\n
|
|
If you don't know how to grab the log file please refer to the documentation: \n\n
|
|
https://klipperscreen.readthedocs.io/en/latest/Troubleshooting/ \n\n
|
|
Thank you!`
|
|
})
|