From beaac2486bd34f5d10c6e34b8e06792e0c653abd Mon Sep 17 00:00:00 2001 From: HARALD Date: Thu, 20 Jul 2023 08:18:53 +0900 Subject: [PATCH] feat: fixed path for closePRForAnIssue action --- src/handlers/comment/handlers/unassign.ts | 2 +- src/handlers/wildcard/unassign.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/handlers/comment/handlers/unassign.ts b/src/handlers/comment/handlers/unassign.ts index cf1e0e3de..3289ed0b0 100644 --- a/src/handlers/comment/handlers/unassign.ts +++ b/src/handlers/comment/handlers/unassign.ts @@ -2,7 +2,7 @@ import { removeAssignees } from "../../../helpers"; import { getBotContext, getLogger } from "../../../bindings"; import { Payload } from "../../../types"; import { IssueCommentCommands } from "../commands"; -import { closePullRequestForAnIssue } from "../.."; +import { closePullRequestForAnIssue } from "../../assign/index"; export const unassign = async (body: string) => { const { payload: _payload } = getBotContext(); diff --git a/src/handlers/wildcard/unassign.ts b/src/handlers/wildcard/unassign.ts index 167d7819e..d3dd62ea5 100644 --- a/src/handlers/wildcard/unassign.ts +++ b/src/handlers/wildcard/unassign.ts @@ -1,4 +1,4 @@ -import { closePullRequestForAnIssue } from ".."; +import { closePullRequestForAnIssue } from "../assign"; import { getBotConfig, getLogger } from "../../bindings"; import { GLOBAL_STRINGS } from "../../configs/strings"; import {