Skip to content
This repository has been archived by the owner on Nov 24, 2023. It is now read-only.

Commit

Permalink
feat: build for release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 19, 2022
1 parent febf37f commit 05b5092
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"owner":"technote-space","repo":"get-diff-action","sha":"298674b40aa08d988a0285795bdcb176905b5ec7","ref":"refs/tags/test/v6.1.2.3467155953","tagName":"test/v6.1.2.3467155953","branch":"gh-actions","tags":["test/v6.1.2.3467155953","test/v6.1.2","test/v6.1","test/v6"],"updated_at":"2022-11-15T03:24:53.084Z"}
{"owner":"technote-space","repo":"get-diff-action","sha":"0ca1bb8fdfad9c9be5ca7926bfd1e3e8942b0b5e","ref":"refs/tags/test/v6.1.2.3501808183","tagName":"test/v6.1.2.3501808183","branch":"gh-actions","tags":["test/v6.1.2.3501808183","test/v6.1.2","test/v6.1","test/v6"],"updated_at":"2022-11-19T03:21:56.644Z"}
10 changes: 5 additions & 5 deletions lib/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
export declare type FileDiffResult = Readonly<{
export type FileDiffResult = Readonly<{
insertions: number;
deletions: number;
lines: number;
}>;
export declare type FileResult = Readonly<{
export type FileResult = Readonly<{
file: string;
filterIgnored: boolean;
isMatched: boolean;
}>;
export declare type DiffResult = FileResult | (FileDiffResult & FileResult);
export declare type PullRequestParams = Readonly<{
export type DiffResult = FileResult | (FileDiffResult & FileResult);
export type PullRequestParams = Readonly<{
base: {
ref: string;
sha: string;
Expand All @@ -18,7 +18,7 @@ export declare type PullRequestParams = Readonly<{
ref: string;
};
}>;
export declare type DiffInfo = Readonly<{
export type DiffInfo = Readonly<{
base: string;
head: string;
}>;

0 comments on commit 05b5092

Please sign in to comment.