diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-05-02 18:46:34 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-05-02 18:51:08 -0400 |
commit | f2b382dbcc676daac55662407704dca040c99be0 (patch) | |
tree | c32cfdfcb05695a961b716e0747648b52abee084 | |
parent | 89082b494f9565c6685530b58e0780327b28ceb8 (diff) | |
download | kutter-f2b382dbcc676daac55662407704dca040c99be0.tar.gz kutter-f2b382dbcc676daac55662407704dca040c99be0.tar.xz kutter-f2b382dbcc676daac55662407704dca040c99be0.zip |
invalid-label-bot: Reword the invalid label message
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | .github/workflows/invalid-label-bot.yaml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/invalid-label-bot.yaml b/.github/workflows/invalid-label-bot.yaml index 5e0ffe63..809a9aae 100644 --- a/.github/workflows/invalid-label-bot.yaml +++ b/.github/workflows/invalid-label-bot.yaml @@ -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" on: issues: @@ -13,9 +13,13 @@ jobs: script: | if (context.payload.label.name != "invalid") 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" - + " were not followed for this issue.\n" + "\n" + "We use github to share the results of work done to" + " improve Klipper. We don't use github for requests." |