fix: set error types to any
This commit is contained in:
parent
3e21ec0c82
commit
3263596ac4
7 changed files with 67 additions and 25 deletions
src
|
@ -29,7 +29,7 @@ async function run(): Promise<void> {
|
|||
core.debug(`Inputs: ${inspect(inputs)}`)
|
||||
|
||||
await createPullRequest(inputs)
|
||||
} catch (error) {
|
||||
} catch (error: any) {
|
||||
core.setFailed(error.message)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue