0
1
mirror of https://github.com/actions/checkout synced 2024-06-01 18:38:03 +02:00

Tried to fix the "unstaged changes" test failure

Error: Unstaged changes detected. Locally try running: git clean -ffdx && npm ci && npm run format && npm run build
Error: Process completed with exit code 1.

Rebased PR from #424
This commit is contained in:
Cosimo Streppone 2021-01-13 09:58:23 +01:00 committed by Kaido Kert
parent fbc745150c
commit b9935aab1f

6
dist/index.js vendored
View File

@ -7589,8 +7589,10 @@ class GitAuthHelper {
core.warning(`Failed to remove '${configKey}' from the git config`);
}
}
const pattern = regexpHelper.escape(configKey);
yield this.git.submoduleForeach(`git config --local --name-only --get-regexp '${pattern}' && git config --local --unset-all '${configKey}' || :`, true);
if (this.settings.submodules) {
const pattern = regexpHelper.escape(configKey);
yield this.git.submoduleForeach(`git config --local --name-only --get-regexp '${pattern}' && git config --local --unset-all '${configKey}' || :`, true);
}
});
}
}