From 702ce464a895907c9236e166ac7d1bf17a77c66f Mon Sep 17 00:00:00 2001 From: Ross Brodbeck Date: Fri, 24 Jul 2020 08:42:58 -0400 Subject: [PATCH] Update typing and add a comment to fix --- src/IssueProcessor.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/IssueProcessor.ts b/src/IssueProcessor.ts index 9ef8ce4e..0e85cb2a 100644 --- a/src/IssueProcessor.ts +++ b/src/IssueProcessor.ts @@ -1,6 +1,5 @@ import * as core from '@actions/core'; import {context, getOctokit} from '@actions/github'; -//import {Octokit} from '@octokit/rest'; import {GetResponseTypeFromEndpointMethod} from '@octokit/types'; export interface Issue { @@ -57,7 +56,7 @@ export interface IssueProcessorOptions { * Handle processing of issues for staleness/closure. */ export class IssueProcessor { - readonly client: any; + readonly client: any; // need to make this the correct type readonly options: IssueProcessorOptions; private operationsLeft = 0;