1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-python synced 2025-03-14 22:26:58 +01:00
This commit is contained in:
Nathan Wagner 2025-03-13 18:57:51 +01:00 committed by GitHub
commit a44f58dce6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

6
dist/setup/index.js vendored
View file

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