11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
![]() |
import * as t from "io-ts";
|
||
|
import { automodAction } from "../helpers";
|
||
|
|
||
|
export const LogAction = automodAction({
|
||
|
configType: t.boolean,
|
||
|
|
||
|
async apply({ pluginData, contexts, actionConfig }) {
|
||
|
// TODO: Everything
|
||
|
},
|
||
|
});
|