diff --git a/src/IssueProcessor.ts b/src/IssueProcessor.ts index b911e098..c4370746 100644 --- a/src/IssueProcessor.ts +++ b/src/IssueProcessor.ts @@ -2,7 +2,7 @@ import * as core from '@actions/core'; import * as github from '@actions/github'; import {Octokit} from '@octokit/rest'; -type OcotoKitIssueList = Octokit.Response; +type OctoKitIssueList = Octokit.Response; export interface Issue { title: string; @@ -157,7 +157,7 @@ export class IssueProcessor { // grab issues from github in baches of 100 private async getIssues(page: number): Promise { - const issueResult: OcotoKitIssueList = await this.client.issues.listForRepo( + const issueResult: OctoKitIssueList = await this.client.issues.listForRepo( { owner: github.context.repo.owner, repo: github.context.repo.repo,