From 3692b9b73de121b96d126610dde2f039639b1666 Mon Sep 17 00:00:00 2001 From: Trent Jones Date: Sat, 29 Feb 2020 13:39:38 -0600 Subject: [PATCH] ci testing --- dist/index.js | 2 +- src/input.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 3ff39e0..7cbe83e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -13925,7 +13925,7 @@ class Input { return !!(this.owner && this.repo && this.packageName && - this.numOldVersionsToDelete && + this.numOldVersionsToDelete != null && this.token); } } diff --git a/src/input.ts b/src/input.ts index 7bdc2ae..cf4ae51 100644 --- a/src/input.ts +++ b/src/input.ts @@ -40,7 +40,7 @@ export class Input { this.owner && this.repo && this.packageName && - this.numOldVersionsToDelete && + this.numOldVersionsToDelete != null && this.token ) }