Added verbose logging

This commit is contained in:
Tonye Jack 2023-05-23 01:03:53 -06:00
parent a0707c49b4
commit ca5582c5e2

View File

@ -83,6 +83,10 @@ export async function run(): Promise<void> {
)
}
core.info(
`Retrieving changes between ${shaResult.previousSha} (${shaResult.targetBranch}) → ${shaResult.currentSha} (${shaResult.currentBranch})`
)
const filePatterns = await getFilePatterns({
inputs
})
@ -374,6 +378,8 @@ export async function run(): Promise<void> {
})
}
core.info('All Done!')
core.endGroup()
}