budibase/packages/server/src/automations/triggerInfo/cron.js

32 lines
657 B
JavaScript
Raw Normal View History

exports.definition = {
name: "Cron Trigger",
event: "cron:trigger",
2021-09-14 19:22:33 +02:00
icon: "Clock",
tagline: "Cron Trigger (<b>{{inputs.cron}}</b>)",
description: "Triggers automation on a cron schedule.",
stepId: "CRON",
inputs: {},
schema: {
inputs: {
properties: {
cron: {
type: "string",
customType: "cron",
title: "Expression",
},
},
required: ["cron"],
},
outputs: {
properties: {
timestamp: {
type: "number",
description: "Timestamp the cron was executed",
},
},
required: ["timestamp"],
},
},
type: "TRIGGER",
}