Local Trigger
If a trigger is only relevant to your specific use-case, or if you’re developing a trigger and want a simpler workflow, a locally defined trigger is a convenient way to create and manage your trigger code.
Project structure for a local trigger
Place the code in the triggers
folder in the root of your project like this:
/my-actionsflow-workflow└── /workflows└── workflow.yml└── /triggers└── /my_trigger1└── index.js└── package.json└── my_trigger2.js
You can use both a single file or a folder of trigger to define your trigger logic. Then use it like this:
on:my_trigger1:param: valuemy_trigger2:param: value
View local triggers example on Github
To get started developing a trigger locally, you can quickly generate one workflow using git clone https://github.com/actionsflow/actionsflow-workflow-default
, then create triggers
folder for your local triggers.
Sample
A simple example of trigger looks like this:
module.exports = class Example {constructor({ helpers, options }) {this.options = options;this.helpers = helpers;}async run() {const items = [{id: "uniqueId",title: "hello world title",},{id: "uniqueId2",title: "hello world title2",},];return items;}};
You should implement run
method or declare webhooks
definition in a trigger at least.
Learn more about trigger API, please see Trigger API
Learn more about trigger examples, see:
- View RSS trigger on Github
- View Poll trigger on Github
- View Telegram Bot trigger on Github
- View Twitter trigger on Github
API
See Trigger API
Test
Once you have finished the trigger code, you can run npm run build
to test your trigger, the built workflows will be generated at dist/workflows