invalid-label-bot: Reword the invalid label message

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2021-05-02 18:46:34 -04:00
parent 89082b494f
commit f2b382dbcc
1 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# Enable the github stale issue bot tracker # Add a comment to github issues marked with the invalid label
name: "Add comment to issues marked invalid" name: "Add comment to issues marked invalid"
on: on:
issues: issues:
@ -13,9 +13,13 @@ jobs:
script: | script: |
if (context.payload.label.name != "invalid") if (context.payload.label.name != "invalid")
return; return;
msg = "Unfortunately, it appears the directions at" msg = "It looks like this ticket is a request for help"
+ " (or similar)."
+ " Many helpful people will not see your message here and you"
+ " are unlikely to get a useful response."
+ " Please close this ticket and follow the contact directions"
+ " at:
+ " https://www.klipper3d.org/Contact.html" + " https://www.klipper3d.org/Contact.html"
+ " were not followed for this issue.\n"
+ "\n" + "\n"
+ "We use github to share the results of work done to" + "We use github to share the results of work done to"
+ " improve Klipper. We don't use github for requests." + " improve Klipper. We don't use github for requests."