mirror of
https://code.forgejo.org/actions/checkout.git
synced 2024-11-06 03:55:50 +00: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.
This commit is contained in:
parent
8e5e5f44a1
commit
720e23ac84
1 changed files with 4 additions and 2 deletions
6
dist/index.js
vendored
6
dist/index.js
vendored
|
@ -5652,8 +5652,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);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue