in src/Trekin.ts [61:68]
public async postOperation(trelloAction: Action) {
if (this.guardian.isSkipEvent(trelloAction)) {
return Promise.resolve("Skip this event");
}
this.worker.trelloAction = trelloAction;
this.worker.setting = this.guardian;
return this.worker.postAction();
}