Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #543 from wannacfuture/feat/unassign-broken
Browse files Browse the repository at this point in the history
HotFix: fixed path for closePRForAnIssue action
  • Loading branch information
0xcodercrane authored Jul 20, 2023
2 parents 6ed2ae6 + beaac24 commit 6a4366e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/handlers/comment/handlers/unassign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/handlers/wildcard/unassign.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { closePullRequestForAnIssue } from "..";
import { closePullRequestForAnIssue } from "../assign";
import { getBotConfig, getLogger } from "../../bindings";
import { GLOBAL_STRINGS } from "../../configs/strings";
import {
Expand Down

0 comments on commit 6a4366e

Please sign in to comment.