import { getInput } from"@actions/core"/** Get an object from github actions */exportfunctionmaybeGetInput(key: string) {
const value = getInput(key.toLowerCase())
if (value !== "false" && value !== "") {
return value
}
returnundefined// skip installation
}