Skip to content

Commit 90de39a

Browse files
feat: build for release
1 parent 0a48adb commit 90de39a

File tree

12 files changed

+122
-103
lines changed

12 files changed

+122
-103
lines changed

build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"owner":"technote-space","repo":"gh-actions-template","sha":"58c4dde0c7ee2da1ddcbd6505c666cbb72645830","ref":"refs/tags/v0.8.0","tagName":"v0.8.0","branch":"gh-actions","tags":["v0.8.0","v0.8","v0"],"updated_at":"2022-07-13T15:07:25.946Z"}
1+
{"owner":"technote-space","repo":"gh-actions-template","sha":"7cc2cf024ad6c7258d17fedad39f0d7e3cd35274","ref":"refs/tags/test/v0.8.1.2800984131","tagName":"test/v0.8.1.2800984131","branch":"gh-actions","tags":["test/v0.8.1.2800984131","test/v0.8.1","test/v0.8","test/v0"],"updated_at":"2022-08-05T03:03:13.604Z"}

lib/constant.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export declare const TARGET_EVENTS: {
2+
pull_request: string[];
3+
};

lib/main.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87001,7 +87001,7 @@ var distWeb$1 = /*#__PURE__*/Object.freeze({
8700187001

8700287002
var require$$3 = /*@__PURE__*/getAugmentedNamespace(distWeb$1);
8700387003

87004-
const VERSION = "2.21.2";
87004+
const VERSION = "2.21.3";
8700587005

8700687006
/**
8700787007
* Some “list” response that can be paginated have a different response structure

lib/process.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import type { Context } from '@actions/github/lib/context';
2+
import type { Octokit } from '@technote-space/github-action-helper/dist/types';
3+
import type { Logger } from '@technote-space/github-action-log-helper';
4+
export declare const execute: (logger: Logger, octokit: Octokit, context: Context) => Promise<void>;

lib/process.test.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

lib/setup.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

lib/utils/issue.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import type { Context } from '@actions/github/lib/context';
2+
import type { components } from '@octokit/openapi-types';
3+
import type { Octokit } from '@technote-space/github-action-helper/dist/types';
4+
declare type IssuesListForRepoResponseData = components['schemas']['issue'];
5+
export declare const getIssues: (octokit: Octokit, context: Context) => Promise<Array<IssuesListForRepoResponseData>>;
6+
export {};

lib/utils/issue.test.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

lib/utils/misc.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import type { Context } from '@actions/github/lib/context';
2+
import type { WebhookPayload } from '@actions/github/lib/interfaces';
3+
export declare const getPayload: (context: Context) => WebhookPayload;

0 commit comments

Comments
 (0)