Skip to content

Commit

Permalink
chore(release): 3.0.2 [skip ci]
Browse files Browse the repository at this point in the history
## [3.0.2](v3.0.1...v3.0.2) (2023-01-30)

### Bug Fixes

* try to fix "Cannot read properties of undefined (reading 'length')" ([48e18c6](48e18c6)), closes [#11](#11)
  • Loading branch information
wow-actions-bot[bot] committed Jan 30, 2023
1 parent 48e18c6 commit 67fafa0
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [3.0.2](https://github.com/wow-actions/auto-assign/compare/v3.0.1...v3.0.2) (2023-01-30)


### Bug Fixes

* try to fix "Cannot read properties of undefined (reading 'length')" ([48e18c6](https://github.com/wow-actions/auto-assign/commit/48e18c66f6ca928e2e8dc0352e1dd937be60074a)), closes [#11](https://github.com/wow-actions/auto-assign/issues/11)

## [3.0.1](https://github.com/wow-actions/auto-assign/compare/v3.0.0...v3.0.1) (2023-01-03)


Expand Down
Binary file modified dist/index.js.cache
Binary file not shown.
4 changes: 2 additions & 2 deletions dist/index.js.cache.js

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions dist/inputs.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
export declare function getInputs(): {
skipDraft?: boolean | undefined;
addReviewers?: boolean | undefined;
addAssignees?: boolean | undefined;
reviewers?: string[] | undefined;
assignees?: string[] | undefined;
numberOfAssignees?: number | undefined;
numberOfReviewers?: number | undefined;
skipKeywords?: string[] | undefined;
includeLabels?: string[] | undefined;
excludeLabels?: string[] | undefined;
skipDraft: boolean;
addReviewers: boolean;
addAssignees: boolean;
reviewers: string[];
assignees: string[];
numberOfAssignees: number;
numberOfReviewers: number;
skipKeywords: string[];
includeLabels: string[];
excludeLabels: string[];
};
export type Inputs = ReturnType<typeof getInputs>;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "auto-assign",
"description": "Automatically add reviewers/assignees to issues/PRs",
"version": "3.0.0",
"version": "3.0.2",
"main": "dist/index.js",
"repository": "https://github.com/wow-actions/auto-assign",
"files": [
Expand Down

0 comments on commit 67fafa0

Please sign in to comment.