Add option to skip updating or recreating comments when message is unchanged

This commit is contained in:
Alex Burgel 2023-08-14 12:51:55 -04:00
parent 077277a006
commit e5439e773a
No known key found for this signature in database
6 changed files with 96 additions and 19 deletions

View file

@ -28,6 +28,9 @@ export const onlyCreateComment = core.getBooleanInput("only_create", {
export const onlyUpdateComment = core.getBooleanInput("only_update", {
required: true
})
export const skipUnchanged = core.getBooleanInput("skip_unchanged", {
required: true
})
export const hideOldComment = core.getBooleanInput("hide", {required: true})
export const githubToken = core.getInput("GITHUB_TOKEN", {required: true})
export const ignoreEmpty = core.getBooleanInput("ignore_empty", {