/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the Source EULA. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as core from '@actions/core' import { context } from '@actions/github' import { OctoKitIssue } from '../api/octokit' import { getRequiredInput, logErrorToIssue, logRateLimit } from '../utils/utils' import { CopyCat } from './copyCat' const token = getRequiredInput('token') const main = async () => { await new CopyCat( new OctoKitIssue(token, context.repo, { number: context.issue.number }), getRequiredInput('owner'), getRequiredInput('repo'), ).run() } main() .then(() => logRateLimit(token)) .catch(async (error) => { core.setFailed(error.message) await logErrorToIssue(error.message, true, token) })