3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 04:25:01 +00:00

Merge pull request #475 from rubyowo/feat/pretty_name

feat: pretty_name for automod
This commit is contained in:
Miikka 2024-05-19 13:33:21 +03:00 committed by GitHub
commit 0a38440bca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 17 additions and 4 deletions

View file

@ -59,6 +59,7 @@ type AutomodActionApplyFn<TConfigType> = (meta: {
contexts: AutomodContext[];
actionConfig: TConfigType;
matchResult: AutomodTriggerMatchResult;
prettyName: string | undefined;
}) => Awaitable<void>;
export interface AutomodActionBlueprint<TConfigSchema extends ZodTypeAny> {