Merge ae66cc3fdf9e31fb9f188fda02d9f9d89390a9f6 into 83679a892e2d95755f2dac6acb0bfd1e9ac5d548

This commit is contained in:
Nathan Wagner 2025-11-28 15:42:41 +01:00 committed by GitHub
commit 29b2cc5f2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

6
dist/setup/index.js vendored
View File

@ -11027,7 +11027,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;