Skip to content

Commit 1381b4b

Browse files
committed
Update dry-run.ts
1 parent fb38bac commit 1381b4b

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/dry-run.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
/************* ✨ Codeium Command ⭐ *************/
1+
import { GitHub } from "@actions/github/lib/utils";
2+
3+
interface updatedDependency {
4+
old: string;
5+
new: string;
6+
oldRepository: string;
7+
newRepository: string;
8+
}
29
export async function dryRun(
310
updatedDeps: updatedDependency[],
4-
octokit: Octokit,
11+
octokit: InstanceType<typeof GitHub>,
512
owner: string,
13+
14+
dryRunMessage: string,
615
repo: string,
716
prNumber: number,
817
baseBranch: string,
@@ -38,4 +47,3 @@ export async function dryRun(
3847
state: 'closed'
3948
});
4049
}
41-
/****** e565f894-bac1-4452-a102-f31020ad9a4b *******/

0 commit comments

Comments
 (0)