in src/main.ts [52:65]
async function run(): Promise<void> {
try {
const issueFilePath: string = getInput("issueFilePath");
const apiKey: string = getInput("apiKey");
const teamId: string = getInput("teamId");
const stateId: string = getInput("stateId");
const isDryrun: boolean = Boolean(getInput("isDryrun"));
const embed: string = getInput("embed");
await main(issueFilePath, apiKey, teamId, stateId, isDryrun, embed);
} catch (error) {
setFailed(error.message);
}
}