From 5477079bc0be8ecdc3f039020682ab5606aec9c7 Mon Sep 17 00:00:00 2001 From: Darren Ethier Date: Mon, 18 May 2020 19:38:53 -0400 Subject: [PATCH] include synchronize action for todo configuration --- lib/automations/todos/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/automations/todos/index.js b/lib/automations/todos/index.js index dd9e4f9e..d55f26c9 100644 --- a/lib/automations/todos/index.js +++ b/lib/automations/todos/index.js @@ -3,6 +3,6 @@ const runner = require( './runner' ); module.exports = { name: 'todos', events: [ 'pull_request', 'push', 'issues' ], - actions: [ 'opened', 'closed', 'edited' ], + actions: [ 'opened', 'synchronize', 'closed', 'edited' ], runner, };