* add logic to not save state in restore step when setting `reeval` to true
* create infrastructure to set `Inputs.Reeval` input variable
within tests
* `Inputs.Reeval` set to false for all save & restore tests
@ -37646,6 +37646,11 @@ function getInputAsArray(name, options) {
.filter(x=>x!=="");
}
exports.getInputAsArray=getInputAsArray;
functiongetInputAsBoolean(name,options){
constvalue=core.getBooleanInput(name,options);
returnvalue;
}
exports.getInputAsBoolean=getInputAsBoolean;
functiongetInputAsInt(name,options){
constvalue=parseInt(core.getInput(name,options));
if(isNaN(value)||value<0){
@ -46782,14 +46787,15 @@ function run() {
utils.logWarning(`Event Validation Error: The event type ${process.env[constants_1.Events.Key]} is not supported because it's not tied to a branch or tag ref.`);