Pass showProgress to fetchOptions

This commit is contained in:
Shia 2023-09-05 08:46:38 +09:00 committed by Shia
parent b4ffde65f4
commit f329befabb
3 changed files with 9 additions and 5 deletions

4
dist/index.js vendored
View file

@ -1243,7 +1243,9 @@ function getSource(settings) {
}
// Fetch
core.startGroup('Fetching the repository');
const fetchOptions = {};
const fetchOptions = {
showProgress: settings.showProgress
};
if (settings.filter) {
fetchOptions.filter = settings.filter;
}