12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import * as t from "io-ts";
|
|
import { automodAction } from "../helpers";
|
|
|
|
export const ExampleAction = automodAction({
|
|
configType: t.type({
|
|
someValue: t.string,
|
|
}),
|
|
|
|
async apply({ pluginData, contexts, actionConfig }) {
|
|
// TODO: Everything
|
|
},
|
|
});
|