We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb38bac commit 1381b4bCopy full SHA for 1381b4b
src/dry-run.ts
@@ -1,8 +1,17 @@
1
-/************* ✨ Codeium Command ⭐ *************/
+import { GitHub } from "@actions/github/lib/utils";
2
+
3
+interface updatedDependency {
4
+ old: string;
5
+ new: string;
6
+ oldRepository: string;
7
+ newRepository: string;
8
+}
9
export async function dryRun(
10
updatedDeps: updatedDependency[],
- octokit: Octokit,
11
+ octokit: InstanceType<typeof GitHub>,
12
owner: string,
13
14
+ dryRunMessage: string,
15
repo: string,
16
prNumber: number,
17
baseBranch: string,
@@ -38,4 +47,3 @@ export async function dryRun(
38
47
state: 'closed'
39
48
});
40
49
}
41
-/****** e565f894-bac1-4452-a102-f31020ad9a4b *******/
0 commit comments