5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-14 05:53:46 +00:00

fix: extends is a reserved keyword

This commit is contained in:
Zadkiel 2020-01-03 11:56:26 +01:00 committed by GitHub
parent c1d4f0cca8
commit fcaa8ba03a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,10 +41,10 @@ exports.handleDryRunOption = () => {
*/
exports.handleExtendsOption = () => {
const extendsOption = {};
const extends = core.getInput(inputs.extends);
const _extends = core.getInput(inputs.extends);
if (extends) {
extendsOption.extends = extends;
extendsOption.extends = _extends;
}
return extendsOption;