-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [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
Showing
5 changed files
with
20 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters