[BUG] <title> Unable to load panel network #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!` | |
}) |