make logging of git diff unconditional, remove parameter

This commit is contained in:
dogboydog
2020-07-08 19:48:46 -04:00
committed by Webber Takken
parent 6fb8550919
commit 91ec427695
7 changed files with 34 additions and 79 deletions

View File

@@ -77,12 +77,6 @@ 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') || '';
}