Initial implementation of logDiffIfDirty

This commit is contained in:
dogboydog
2020-07-08 16:44:54 -04:00
committed by Webber Takken
parent 96eeaf940a
commit cb913cd286
6 changed files with 70 additions and 2 deletions

View File

@@ -77,6 +77,12 @@ class Input {
return input === 'true' ? 'true' : 'false';
}
static get logDiffIfDirty() {
const input = core.getInput('logDiffIfDirty') || 'false';
return input === 'true' ? 'true' : 'false';
}
static get customParameters() {
return core.getInput('customParameters') || '';
}