From 7df140fdbb652aeb643199dd8ce20ebb7c8f0232 Mon Sep 17 00:00:00 2001 From: Stephan Date: Mon, 10 Jan 2022 14:37:03 +0100 Subject: [PATCH] fix --- .github/workflows/assign-milestones.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/assign-milestones.js b/.github/workflows/assign-milestones.js index 7704414..d69d163 100644 --- a/.github/workflows/assign-milestones.js +++ b/.github/workflows/assign-milestones.js @@ -15,8 +15,6 @@ module.exports = ({github, context}) => { - console.log('assign-milestones') - const restapi = github.rest // get and validate the event name @@ -27,11 +25,13 @@ module.exports = ({github, context}) => { // get and validate the event action const eventAction = github.event.action - if (eventAction != 'created' && eventAction != 'deleted') { + if (false && eventAction != 'created' && eventAction != 'deleted') { return } console.log(`event: ${eventName}/${eventAction}`) + console.log(context); + console.log(context.payload); /*