This commit is contained in:
Nathan Wagner 2025-04-18 18:11:13 +09:00 committed by GitHub
commit 28d990b7b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

6
dist/setup/index.js vendored
View File

@ -11021,7 +11021,11 @@ function getManifestFromRepo(owner, repo, auth, branch = 'master') {
core.debug('Invalid json');
}
}
return releases;
if (!releases.hasOwnProperty('documentation_url')){
return releases;
}else{
throw new Error ('github API rate limiting response in JSON format')
}
});
}
exports.getManifestFromRepo = getManifestFromRepo;