Merge branch 'moltbot:main' into replace-kimi-coding-strings

This commit is contained in:
JM Marquez 2026-01-28 13:31:45 +08:00 committed by GitHub
commit cc8d8cdc60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,13 +24,26 @@ jobs:
with: with:
github-token: ${{ steps.app-token.outputs.token }} github-token: ${{ steps.app-token.outputs.token }}
script: | script: |
// Labels prefixed with "r:" are auto-response triggers.
const rules = [ const rules = [
{ {
label: "skill-clawdhub", label: "r: skill",
close: true, close: true,
message: message:
"Thanks for the contribution! New skills should be published to Clawdhub for everyone to use. Were keeping the core lean on skills, so Im closing this out.", "Thanks for the contribution! New skills should be published to Clawdhub for everyone to use. Were keeping the core lean on skills, so Im closing this out.",
}, },
{
label: "r: support",
close: true,
message:
"Please use our support server https://molt.bot/discord and ask in #help or #users-helping-users to resolve this, or follow the stuck FAQ at https://docs.molt.bot/help/faq#im-stuck-whats-the-fastest-way-to-get-unstuck.",
},
{
label: "r: third-party-extension",
close: true,
message:
"This would be better made as a third-party extension with our SDK that you maintain yourself. Docs: https://docs.molt.bot/plugin.",
},
]; ];
const labelName = context.payload.label?.name; const labelName = context.payload.label?.name;